引入github分页插件,分页不生效

环境:spring-boot 2.3.1.RELEASE

依赖如下:

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

解决办法:

删除上述依赖,引入下面的依赖

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

上一篇:使用github搭建自己的免费博客站点系列


下一篇:PHP使用readability提取任意网页正文内容