本节主要介绍Repository接口规范,及其子接口
org.springframework.data.repository.CrudRepository<T, ID> :实现了一组CRUD的方法
org.springframework.data.repository.PagingAndSortingRepository<T, ID>:实现了一组分页排序相关的方法
org.springframework.data.jpa.repository.JpaRepository<T, ID>:实现了一组JPA相关规范的方法
自定义的接口继承JpaRepository 这样的接口就具有通用的数据访问控制层的能力。
原文:https://www.cnblogs.com/csnjava/p/13251900.html