码迷,mamicode.com
首页 > 其他好文 > 详细

MyBatis 使用PageHelper分页不起作用

时间:2019-09-23 18:04:11      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:auto   com   col   highlight   class   java   conf   end   configure   

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分页不起作用

标签:auto   com   col   highlight   class   java   conf   end   configure   

原文地址:https://www.cnblogs.com/DreamFather/p/11573648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!