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
<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> <version>5.2.1</version> </dependency>
方法二 本人使用 PageHelper的starter
1.导入pom.xml依赖
<dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2.12</version> </dependency>
2.在application.properties或者application.yml格式配置pagehelper的属性
二选一
#pagehelper分页插件配置application.properties
pagehelper.helper-dialect=mysql pagehelper.reasonable=true pagehelper.support-methods-arguments=true pagehelper.params=count=countSql
application.yml
hepagehelper: lperDialect: mysql reasonable: true supportMethodsArguments: true params: count=countSql
Controller层调用 测试
@RequestMapping("findallCar") public String findallCar(Model model, HttpSession session) { PageHelper.startPage(1,5); List<CarTable> carTables = service.findallCar(); PageInfo<CarTable> page = new PageInfo<CarTable>(carTables); System.out.println(page); model.addAttribute("carall", carTables); session.setAttribute("caralls", carTables); return "carinsert"; }
PageHelper.startPage(1,5); List<CarTable> carTables = service.findallCar(); PageInfo<CarTable> page = new PageInfo<CarTable>(carTables); System.out.println(page);
到此这篇关于Spring Boot 中PageHelper 插件使用配置思路详解的文章就介绍到这了,更多相关Spring Boot PageHelper 插件内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
浅谈springfox-swagger原理解析与使用过程中遇到的坑
本篇文章主要介绍了浅谈springfox-swagger原理解析与使用过程中遇到的坑,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-02-02详解Spring boot+CXF开发WebService Demo
这篇文章主要介绍了详解Spring boot+CXF开发WebService Demo,非常具有实用价值,需要的朋友可以参考下2017-05-05Caused by: java.lang.ClassNotFoundException: org.objectweb.a
这篇文章主要介绍了Caused by: java.lang.ClassNotFoundException: org.objectweb.asm.Type异常,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-07-07Mybatis-Plus字段策略FieldStrategy的使用
本文主要介绍了Mybatis-Plus字段策略FieldStrategy的使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2022-08-08springboot整合企微webhook机器人发送消息提醒
这篇文章主要为大家介绍了springboot整合企微webhook机器人发送消息提醒,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-12-12解决mybatis plus 分页查询有条数,total和pages都是零的问题
这篇文章主要介绍了解决mybatis plus 分页查询有条数,total和pages都是零的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2020-11-11
最新评论