Spring|Spring Boot 中PageHelper 插件使用配置思路详解
使用思路
1.引入myabtis和pagehelper依赖
2.yml中配置mybatis扫描和实体类
这2行代码
pageNum:当前第几页
pageSize:显示多少条数据
userList:数据库查询的数据数据列表
PageHelper.startPage(pageNum, pageSize);
PageInfo pageInfo = new PageInfo(userList);
最后返回一个pageInfo 对象即可,pageInfo 这个对象中只有数据一些信息,但是,没有成功失败的状态或者提示语。
真实企业中会封装一个返回对象,把pageInfo 放到对象中
1.pom依赖
方法一:使用原生的PageHelper
1.在pom.xml中引入依赖,刷新自动加载jar
com.github.pagehelper pagehelper5.2.1
方法二 本人使用 PageHelper的starter
1.导入pom.xml依赖
com.github.pagehelper pagehelper-spring-boot-starter1.2.12
2.在application.properties或者application.yml格式配置pagehelper的属性
二选一
#pagehelper分页插件配置application.properties
pagehelper.helper-dialect=mysqlpagehelper.reasonable=truepagehelper.support-methods-arguments=truepagehelper.params=count=countSql
application.yml
hepagehelper:lperDialect: mysqlreasonable: truesupportMethodsArguments: trueparams: count=countSql
Controller层调用 测试
@RequestMapping("findallCar")public String findallCar(Model model, HttpSession session) {PageHelper.startPage(1,5); ListcarTables = service.findallCar(); PageInfo page = new PageInfo (carTables); System.out.println(page); model.addAttribute("carall", carTables); session.setAttribute("caralls", carTables); return "carinsert"; }
PageHelper.startPage(1,5); ListcarTables = service.findallCar(); PageInfo page = new PageInfo (carTables); System.out.println(page);
【Spring|Spring Boot 中PageHelper 插件使用配置思路详解】到此这篇关于Spring Boot 中PageHelper 插件使用配置思路详解的文章就介绍到这了,更多相关Spring Boot PageHelper 插件内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- 低代码指南100方案(98中餐厅餐饮经营中遇到的这些问题该如何解决)
- 投稿|Airbnb在中国,没撑过“七年之痒”
- 在右键菜单中添加Beyond Compare合并技巧办法
- 如何在qq全拼输入法中设置自定义短语?
- Beyond Compare输出窗格中显示行号办法
- 怎样用苹果恢复大师恢复iphone中的备忘录?
- 苹果恢复大师怎样恢复设备中的短信?
- 投稿|2022年中国互联网母婴行业年度分析
- Spring|Spring Cloud Stream简单用法
- Python中的函数参数(位置参数默认参数可变参数关键字参数和命名关键字参数)