springboot之JPA几个常用Repository简单说明

springboot整合JPA时会用到的几个Repository包含以下几个:
org.springframework.data.repository.Repository
org.springframework.data.repository.CrudRepository
org.springframework.data.repository.PagingAndSortingRepository
org.springframework.data.jpa.repository.JpaRepository
org.springframework.data.repository.query.QueryByExampleExecutor
org.springframework.data.jpa.repository.JpaSpecificationExecutor
其中前4个的继承关系,如图:


image.png

其中CrudRepository主要封装了有些增删改查的操作,PagingAndSortingRepository封装了分页查询操作,QueryByExampleExecutor(QBE)分装了Example查询,JpaSpecificationExecutor封装了以Criteria为基础的查询。一般情况下,在开发过程中继承JpaRepository即可满足基本需求,该类包含了上述类(除JpaSpecificationExecutor)中的全部操作,如需使用Specification查询,则需要额外继承JpaSpecificationExecutor。

你可能感兴趣的:(springboot之JPA几个常用Repository简单说明)