jpa实现分页

最近项目上使用mysql时,数据量很大,所以制定了分页的功能

1.编写model层

@Entity
@Table(name = "test")
public class Test {

    @Id
    private String id;

    private Date createTime;

    private Date lastChangeTime;
}
省略get,set方法

2.编写dao层

@Repository("test")
public interface TestDao extends JpaRepository<Test, String>, JpaSpecificationExecutor<Test> {
}

3.编写service

@Service
public class TestService {
    @Autowired
    private TestDao testDao;

    public Page<Test> findTest(Date startTime, Date endTime, int start, int limit) {
        Pageable pageable = new PageRequest(start, limit, Sort.Direction.ASC, "createTime");
        Specification<Test> specification = (root, query, cb) -> {
            List<Predicate> predicates = new ArrayList<>();
            predicates.add(cb.greaterThanOrEqualTo(root.get("createTime").as(Date.class), startTime));
            predicates.add(cb.lessThan(root.get("createTime").as(Date.class), endTime));
            Predicate[] p = new Predicate[predicates.size()];
            return cb.and(predicates.toArray(p));
        };
        return testDao.findAll(specification, pageable);
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值