sprintboot整合pageHelper分页

拈花ヽ惹草 提交于 2020-01-15 15:01:46

pom中加入:

 <dependency>
     <groupId>com.github.pagehelper</groupId>
     <artifactId>pagehelper-spring-boot-starter</artifactId>
     <version>0.1.0</version>
 </dependency>

 controller:

 @RequestMapping("testStudent")
 public void testStudent(@RequestParam(value="pn",defaultValue="1")Integer pn)
 {
  //传入页码,以及每页的大小,1页码,6是页大小
  PageHelper.startPage(1,6);
  //startPage后面紧跟的查询就是一个分页的查询
  List<Student> students=testService.selectStudent();
  //使用pageinfo包装查询后的结果,只需要将pageinfo交给页面就行了
  PageInfo<Student> page=new PageInfo<>(students);
   System.out.println(page);
  
 }

不需要配置其他东西

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!