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,踩坑了- - 来源: https://www.cnblogs.com/erfsfj-dbc/p/11801798.html