JPA 实现分页查询的两种方式


1.使用ExampleMatcher

ExampleMatcher matcher = ExampleMatcher.matching()
                .withMatcher("userId", match -> match.exact()) //精确匹配userId
                .withIgnorePaths("id");//忽略属性:是否关注。因为是基本类型,需要忽略掉
ShareRecord shareRecord = new ShareRecord();
shareRecord.setUserId(userId);
Example<ShareRecord> of = Example.of(shareRecord, matcher);
pageable  = new PageRequest(pageable.getPageNumber(), pageable.getPageSize(), pageable.getSort());
Page<ShareRecord> page = shareRecordRepository.findAll(of,pageable);

2.使用Specification

Page<ShareRecord> page = shareRecordRepository.findAll(new Specification<ShareRecord>(){
   @Override
   public Predicate toPredicate(Root<ShareRecord> root, CriteriaQuery<?> query, CriteriaBuilder cb) {
       List<Predicate> list = new ArrayList<>();
          if (StringUtils.isNotEmpty(userId))
              list.add(cb.equal(root.<String>get("userId"), userId));
          if (list.size() != 0) {
              Predicate[] p = new Predicate[list.size()];
              return cb.and(list.toArray(p));
          } else {
              return null;
          }
       }
}, new PageRequest(pageable.getPageNumber(), pageable.getPageSize(), pageable.getSort()));


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM