springboot pageHelper不生效问题

最近搭建springboot框架的时候,使用分页插件不能使用,发现原因,不能使用本来插件

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

必须使用springboot的分页插件

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

而且不能省略版本号

猜你喜欢

转载自blog.csdn.net/m0_67393157/article/details/124396617