SpringData系列二 Repository接口
Posted morganlin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringData系列二 Repository接口相关的知识,希望对你有一定的参考价值。
本节主要介绍Repository接口规范,及其子接口
- Repository是一个空接口,即标准接口
- 若我们定义的接口继承了Repository,则该接口会被IOC容器识别为一个Repositoty Bean纳入到IOC容器中。进而可以在该接口中定义满足一定规范的方法。
- 实际上也可以通过注解的方式定义Repository接口
PersonRepository.java
- 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 这样的接口就具有通用的数据访问控制层的能力。
以上是关于SpringData系列二 Repository接口的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot数据访问 SpringBoot整合Mybatis