MyBatis 使用PageHelper分页不起作用

springboot坏境下使用PageHelper不起作用

PageHelper.startPage(pageNo,pageSize);

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

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

<dependency>
    <groupId>com.github.pagehelpergroupId>
    <artifactId>pagehelper-spring-boot-starterartifactId>
    <version>{springbootPageHelper.version}version>
dependency>

而不是原来的

<dependency>
    <groupId>com.github.pagehelpergroupId>
    <artifactId>pagehelperartifactId>
    <version>{pagehelper.version}version>
dependency>

因为上面的依赖缺少了

<dependency>
    <groupId>com.github.pagehelpergroupId>
    <artifactId>pagehelper-spring-boot-autoconfigureartifactId>
dependency>

 

转载于:https://www.cnblogs.com/DreamFather/p/11573648.html

你可能感兴趣的:(java)