多平台统一管理软件接口,如何实现多平台统一管理软件接口
462
2022-09-13
JPA中JpaRepository接口的使用方式
目录JPA JpaRepository接口的使用SpringData的所有接口Jpa Repository继承自定义接口的主意事项整体代码如下解决方案
JPA JpaRepository接口的使用
SpringData的所有接口
CrudRepository接口 ,其中提供了这些方法提供使用,同时继承了其父接口的方法
其中saveAndFlush()方法就相当于hibernate中的saveOrUpdate()和JPA中的merge()
@Test
public void JpaRepository() {
Person person = new Person();
person.setId(27);
person.setName("ab");
person.setAge(22);
person.setEmail("ab@qq.com");
//该方法就相当于hibernate中的saveOrUpdate()和JPA中的merge()
personRepositoiry.saveAndFlush(person);
}
该接口提供了JPA的相关功tzhtfa能
List
List
List
T saveAndFlush(T entity);//强制执行持久化
void deleteInBatch(Iterable
Jpa Repository继承自定义接口的主意事项
今天翻看别人写的项目,看到大神在Repository的接口里又继承了一个自定义接口,觉得这样写挺好,后面注入还是用原来Repository,然后我就把当下自己手里项目也改了改,结果启动报错,错误信息大致如下。
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'TestService': Unsatisfied dependency expressed through field 'repository'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'TestRepository': Invocation of init method failed; nested exception is java.lang.IllegalArgumentException: Failed to create query method public abstract void net.csdn.repository.Test.batchSave(java.util.List)! No property batchSave found for type TestEntity!
整体代码如下
1.自定义接口
public interface Test{
public void batchSave(List
}
2.创建一个接口,该接口 extends JpaRepository 或者 CurdRepository, 以及上面自己定义的接口 Test
public interface TestRepository extends CrudRepository
}
3.实现TestCustom自定义接口,类名我自然而然写成TestService此类的
public class TestService implements Test{
public void batchSave(List
//.....
}
}
解决方案
自定义接口的实现类名是有要求的,必须以 2 中创建的接口的名字TestRepository加上 Impl 来声明,例如
public class TestRepositoryImpl implements Test{
public void batchSave(List
//....tzhtfa.
}
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~