Mybatis-Plus分页查询返回total为0解决
一、创建一个类注入PaginationInterceptor
-
-
public class MybatisPlusConfig {
-
-
/**
-
* 分页插件
-
*/
-
-
public PaginationInterceptor paginationInterceptor() {
-
return new PaginationInterceptor();
-
}
-
}
二、去除pom.xml中的pagehelper的jar包
-
<dependency>
-
<groupId>com.github.pagehelper</groupId>
-
<artifactId>pagehelper-spring-boot-starter</artifactId>
-
<version>1.2.3</version>
-
</dependency>