PageHelper分页失效原因之一

基础pom管理文件中引了依赖

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

到项目中还单独引依赖

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

只需在项目中引

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

so,踩坑了- -


posted @ 2019-11-05 21:36  image_erfsfj  阅读(4032)  评论(0编辑  收藏  举报