摘要: 分页的主要接口与类 PagingAndSortingRepository 继承自 CrudRepository 接口,提供了排序以及分页查询能力,提供了两个方法 Iterable<T> findAll(Sort var1); Page<T> findAll(Pageable var1); 虽然 Pa 阅读全文
posted @ 2019-08-20 22:22 不愤不发 阅读(1455) 评论(0) 推荐(0) 编辑
摘要: 封装Specification查询条件,在Spring Data JPA 2.0以前使用 Specifications 这个辅助类来操作where、not、and和or连接,在2.0版本以后这个类会被剔除,可以直接使用 Specification 自身对象来操作where多条件连接。(以下展示单表多 阅读全文
posted @ 2019-08-20 22:11 不愤不发 阅读(8552) 评论(0) 推荐(2) 编辑