Spring 分页查询
Posted 麦克斯-侯的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring 分页查询相关的知识,希望对你有一定的参考价值。
Pageable pageable = PageRequest.of(2,2); //第一个2表示从第几页开始,第二个2表示显示几条 Page<User> pages= userDao.findAll(pageable); model.addAttribute("users",pages); return "list-user"
以上是关于Spring 分页查询的主要内容,如果未能解决你的问题,请参考以下文章
随便说说Spring Data JPA(包含分页,复合查询)
带有分页和排序的 Spring Boot JPA 规范 API