Springboot整合pagehelper分页功能
作者:水仙周年
这篇文章主要为大家详细介绍了Springboot整合pagehelper分页功能,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了Springboot整合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);
这样只起到了分页效果,对总页面数之类的没有详细信息
如果对页面数量等有需求,则需要加上下面这行
PageInfo<T> appsPageInfo = new PageInfo<>(appsList);
这样就满足了全部的分页要求
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- SpringBoot如何集成PageHelper分页功能
- SpringBoot项目中分页插件PageHelper无效的问题及解决方法
- Springboot整合分页插件PageHelper步骤解析
- Springboot 整合通用mapper和pagehelper展示分页数据的问题(附github源码)
- SpringBoot+Mybatis分页插件PageHelper实现分页效果
- springboot +mybatis 使用PageHelper实现分页并带条件模糊查询功能
- SpringBoot整合PageHelper实现分页查询功能详解
- 详解springboot-mysql-pagehelper分页插件集成
- SpringBoot使用PageHelper分页详解
- SpringBoot 把PageHelper分页信息返回给前端的方法步骤