MyBatis 使用PageHelper分页不起作用

Posted dreamfather

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis 使用PageHelper分页不起作用相关的知识,希望对你有一定的参考价值。

springboot坏境下使用PageHelper不起作用

PageHelper.startPage(pageNo,pageSize);

上面语句跟随的mapper查出来的总是所有数据,并没有分页。

排查之后发现问题出在pom文件依赖错了,springboot坏境要用

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

而不是原来的

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper</artifactId>
    <version>pagehelper.version</version>
</dependency>

因为上面的依赖缺少了

<dependency>
    <groupId>com.github.pagehelper</groupId>
    <artifactId>pagehelper-spring-boot-autoconfigure</artifactId>
</dependency>

 

以上是关于MyBatis 使用PageHelper分页不起作用的主要内容,如果未能解决你的问题,请参考以下文章

springboot mybatis pagehelper 分页问题

逆向工程文件example完美结合使用PageHelper分页插件及分页不成功原因

laypage不足一页不显示分页怎么办

解决Springboot2.x版本pagehelper分页不生效的问题

解决Springboot2.x版本pagehelper分页不生效的问题

解决Springboot2.x版本pagehelper分页不生效的问题