JPA中JpaRepository接口的使用方式

作者:qq_36722039 时间:2022-05-02 05:41:12 

JPA JpaRepository接口的使用

SpringData的所有接口

JPA中JpaRepository接口的使用方式

CrudRepository接口 ,其中提供了这些方法提供使用,同时继承了其父接口的方法

JPA中JpaRepository接口的使用方式

其中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的相关功能


List<T> findAll(); //查找所有实体
List<T> findAll(Sort sort); //排序、查找所有实体
List<T> save(Iterable<? extends T> entities);//保存集合 void flush();//执行缓存与数据库同步
T saveAndFlush(T entity);//强制执行持久化
void deleteInBatch(Iterable<T> entities);//删除一个实体集合

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<TestEntity> list);
}

2.创建一个接口,该接口 extends JpaRepository 或者 CurdRepository, 以及上面自己定义的接口 Test


public interface TestRepository extends CrudRepository<TestEntity, Integer>, Test{
}

3.实现TestCustom自定义接口,类名我自然而然写成TestService此类的


public class TestService implements Test{
public void batchSave(List<TestEntity> list){
 //.....
}
}

解决方案

自定义接口的实现类名是有要求的,必须以 2 中创建的接口的名字TestRepository加上 Impl 来声明,例如


public class TestRepositoryImpl implements Test{
public void batchSave(List<TestEntity> list){
 //.....
}
}

来源:https://blog.csdn.net/qq_36722039/article/details/81147219

标签:JPA,JpaRepository,接口
0
投稿

猜你喜欢

  • java比较器comparator使用示例分享

    2022-07-18 22:45:15
  • Android中new Notification创建实例的最佳方法

    2022-03-19 15:52:25
  • C# 获取指定QQ头像绘制圆形头像框GDI(Graphics)的方法

    2023-03-26 14:44:41
  • Java中数组的定义和使用教程(三)

    2023-08-26 20:03:16
  • Java 方法签名详解及实例代码

    2022-02-04 05:56:06
  • android SDk中常用的java包介绍

    2021-12-18 01:04:45
  • 配置Ant执行Jmeter脚本过程详解

    2023-11-09 22:35:29
  • Spring注解之@Lazy注解使用解析

    2023-08-28 23:12:23
  • C#获取本机IP地址(ipv4)

    2021-08-29 19:22:06
  • Java实现简单的递归操作方法实例

    2021-11-01 14:37:32
  • Spring中多配置文件及引用其他bean的方式

    2023-07-01 17:31:03
  • 非常实用的侧滑删除控件SwipeLayout

    2023-02-01 14:52:39
  • maven多profile 打包下 -P参和-D参数的实现

    2023-03-22 08:25:08
  • Android开发之SeekBar基本使用及各种美观样式示例

    2023-06-30 07:15:22
  • Java字节码中jvm实例用法

    2023-08-08 05:25:09
  • Android EditText限制输入字符的方法总结

    2023-04-22 03:16:24
  • Java解析xml文件遇到特殊符号异常的情况(处理方案)

    2023-10-23 17:31:48
  • C#实现简单聊天程序的方法

    2022-01-02 22:31:20
  • mybatis快速上手并运行程序

    2022-09-24 07:56:08
  • C#虚函数用法实例分析

    2022-04-03 15:03:42
  • asp之家 软件编程 m.aspxhome.com