Springboot如何实现整合pagehelper分页功能的方法

这篇文章主要为大家展示了“Springboot如何实现整合pagehelper分页功能的方法”,内容简而易懂,条理清晰,希望能够帮助大家解决疑惑,下面让小编带领大家一起研究并学习一下“Springboot如何实现整合pagehelper分页功能的方法”这篇文章吧。

一、添加依赖

查找maven中pagehelper的版本

在pom中添加依赖

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

二、使用

网络上很多文章都会说需要在application.properties进行配置

其实完全不需要,默认的设置就已经满足大部分需要了

直接使用即可

@RequestMapping(value = "getApps.do")
public String getApps(Apps apps) {
  PageHelper.startPage(apps.getPageNum(), apps.getPageSize());
  ArrayList<Apps> appsList = appsService.getApps(apps);
  PageInfo<Apps> appsPageInfo = new PageInfo<>(appsList);
  return JSON.toJSONString(appsPageInfo);
}

PageHelper.startPage(需要显示的第几个页面,每个页面显示的数量);

下一行紧跟查询语句,不可以写其他的,否则没有效果。

PageHelper.startPage(apps.getPageNum(), apps.getPageSize());
ArrayList<Apps> appsList = appsService.getApps(apps);

这样只起到了分页效果,对总页面数之类的没有详细信息

Springboot如何实现整合pagehelper分页功能的方法

如果对页面数量等有需求,则需要加上下面这行

PageInfo<T> appsPageInfo = new PageInfo<>(appsList);

这样就满足了全部的分页要求

Springboot如何实现整合pagehelper分页功能的方法

以上是“Springboot如何实现整合pagehelper分页功能的方法”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注行业资讯频道!