Spring Data JPA中CrudRepository和JpaRepository接口的区别是什么?

当我在网上看到这些例子时,我发现它们是可以互换使用的。

它们之间的区别是什么?

为什么要用其中一种而不是另一种呢?


当前回答

所有的答案都为问题提供了足够的细节。不过,让我再补充一点。

为什么我们要使用这些接口:

它们允许Spring找到存储库接口并为它们创建代理对象。 它为您提供了允许您执行一些常见操作的方法(您也可以定义您的自定义方法)。我喜欢这个特性,因为创建一个方法(定义查询和准备好的语句,然后用连接对象执行查询)来做一个简单的操作真的很糟糕!

哪个接口做什么:

CrudRepository:提供CRUD功能 PagingAndSortingRepository:提供对记录进行分页和排序的方法 JpaRepository:提供JPA相关的方法,例如刷新持久化上下文和批量删除记录

何时使用哪个接口:

根据http://jtuts.com/2014/08/26/difference-between-crudrepository-and-jparepository-in-spring-data-jpa/

一般来说,最好的想法是使用CrudRepository或PagingAndSortingRepository,这取决于你是否需要排序和分页。

如果可能的话,应该避免使用JpaRepository,因为它将您的存储库绑定到JPA持久性技术上,在大多数情况下,您可能甚至不会使用它提供的额外方法。

其他回答

所有的答案都为问题提供了足够的细节。不过,让我再补充一点。

为什么我们要使用这些接口:

它们允许Spring找到存储库接口并为它们创建代理对象。 它为您提供了允许您执行一些常见操作的方法(您也可以定义您的自定义方法)。我喜欢这个特性,因为创建一个方法(定义查询和准备好的语句,然后用连接对象执行查询)来做一个简单的操作真的很糟糕!

哪个接口做什么:

CrudRepository:提供CRUD功能 PagingAndSortingRepository:提供对记录进行分页和排序的方法 JpaRepository:提供JPA相关的方法,例如刷新持久化上下文和批量删除记录

何时使用哪个接口:

根据http://jtuts.com/2014/08/26/difference-between-crudrepository-and-jparepository-in-spring-data-jpa/

一般来说,最好的想法是使用CrudRepository或PagingAndSortingRepository,这取决于你是否需要排序和分页。

如果可能的话,应该避免使用JpaRepository,因为它将您的存储库绑定到JPA持久性技术上,在大多数情况下,您可能甚至不会使用它提供的额外方法。

JpaRepository扩展PagingAndSortingRepository,而PagingAndSortingRepository又扩展CrudRepository。

它们的主要功能是:

CrudRepository主要提供CRUD函数。 PagingAndSortingRepository提供了对记录进行分页和排序的方法。 JpaRepository提供了一些与jpa相关的方法,例如在批处理中刷新持久性上下文和删除记录。

由于上面提到的继承,JpaRepository将拥有CrudRepository和PagingAndSortingRepository的所有功能。因此,如果你不需要存储库拥有JpaRepository和PagingAndSortingRepository提供的功能,请使用CrudRepository。

Ken的回答基本上是正确的,但我想回答你的问题“为什么你想使用一个而不是另一个?”

基础知识

为存储库选择的基本接口有两个主要目的。首先,您允许Spring Data存储库基础设施找到您的接口并触发代理创建,以便将接口实例注入到客户机中。第二个目的是将尽可能多的功能拉入接口,而不必声明额外的方法。

常用接口

Spring Data核心库附带了两个基本接口,它们公开了一组专用功能:

CrudRepository—CRUD方法 PagingAndSortingRepository—用于分页和排序的方法(扩展CrudRepository)

能找到接口

The individual store modules (e.g. for JPA or MongoDB) expose store-specific extensions of these base interfaces to allow access to store-specific functionality like flushing or dedicated batching that take some store specifics into account. An example for this is deleteInBatch(…) of JpaRepository which is different from delete(…) as it uses a query to delete the given entities which is more performant but comes with the side effect of not triggering the JPA-defined cascades (as the spec defines it).

我们通常建议不要使用这些基本接口,因为它们将底层持久性技术暴露给客户机,从而加强了客户机与存储库之间的耦合。另外,您还偏离了存储库的原始定义,它基本上是“实体的集合”。所以如果可以,请使用PagingAndSortingRepository。

自定义存储库基础接口

直接依赖于所提供的基本接口的缺点有两个。它们都可能被认为是理论性的,但我认为了解它们很重要:

Depending on a Spring Data repository interface couples your repository interface to the library. I don't think this is a particular issue as you'll probably use abstractions like Page or Pageable in your code anyway. Spring Data is not any different from any other general purpose library like commons-lang or Guava. As long as it provides reasonable benefit, it's just fine. By extending e.g. CrudRepository, you expose a complete set of persistence method at once. This is probably fine in most circumstances as well but you might run into situations where you'd like to gain more fine-grained control over the methods expose, e.g. to create a ReadOnlyRepository that doesn't include the save(…) and delete(…) methods of CrudRepository.

解决这两个缺点的方法是创建自己的基本存储库接口,甚至是一组基础存储库接口。在很多应用中,我看到过这样的东西:

interface ApplicationRepository<T> extends PagingAndSortingRepository<T, Long> { }

interface ReadOnlyRepository<T> extends Repository<T, Long> {

  // Al finder methods go here
}

第一个存储库接口是一些通用的基础接口,它实际上只固定点1,但为了一致性,还将ID类型绑定为Long。第二个接口通常有从CrudRepository和PagingAndSortingRepository复制的所有find…(…)方法,但不公开操作方法。在参考文档中阅读关于该方法的更多信息。

摘要- tl

存储库抽象允许您选择完全由您的架构和功能需求驱动的基本存储库。如果合适的话,使用现成提供的接口,如果必要的话,制作自己的存储库基础接口。除非不可避免,否则不要使用特定于存储库的接口。

下面是CrudRepository和JpaRepository之间的区别:

克鲁德存储库

CrudRepository是一个基础接口,它扩展了Repository接口。 CrudRepository主要提供CRUD (Create, Read, Update, Delete)操作。 saveAll()方法的返回类型为Iterable。 用例—为了执行CRUD操作,定义扩展CrudRepository的存储库。

JpaRepository

JpaRepository扩展了PagingAndSortingRepository,后者扩展了CrudRepository。 JpaRepository提供了CRUD和分页操作,以及其他方法,如flush()、saveAndFlush()和deleteInBatch()等。 saveAll()方法的返回类型为List。 用例-为了执行CRUD和批处理操作,定义存储库extends JpaRepository。

简介:

PagingAndSortingRepository扩展了CrudRepository JpaRepository扩展PagingAndSortingRepository

CrudRepository接口为CRUD操作提供了方法,因此它允许您创建、读取、更新和删除记录,而无需定义自己的方法。

PagingAndSortingRepository提供了使用分页和排序检索实体的附加方法。

最后,JpaRepository添加了一些特定于JPA的更多功能。