jpa 分页

   public Page<Stability> testPager(){
        Pageable pageable = new PageRequest(1, 10, Sort.Direction.ASC, "id");
        return  stabilityDao.findAll(pageable);
    }

so easy,page就是list外加了一层封装,直接转换成json返回更强大

 

 

https://juejin.im/

posted @ 2018-11-27 16:04  cnchengv  阅读(93)  评论(0编辑  收藏  举报