概述
问题描述:
springboot集成mybatis使用pageHelper(分页插件)需要版本匹配版本,不匹配pageHelper使用时会出现分页不成功的现象
版本查看网址
springboot2.7.3版本匹配
pom.xml
springboot版本2.7.3
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.10</version>
</dependency>
<!--分页插件-->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.3.2</version>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
<version>1.4.6</version>
</dependency>
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.4.6</version>
</dependency>
使用方法
PageHelper.startPage(page,limit);//page代表第几页 limit:代表一页显示几条数据
List<ApkInfo> apkInfos = findAll();//这个方法是查询所有数据 条件分页就是查询所有数据后加where条件
PageInfo<ApkInfo> apkInfoPageInfo = new PageInfo<>(apkInfos);
return apkInfoPageInfo;
最后
以上就是朴素大门为你收集整理的springboot,mybatis使用分页插件pageHelper的全部内容,希望文章能够帮你解决springboot,mybatis使用分页插件pageHelper所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复