使用Mybatis-Plus进行分页查询,返回的数据中total总是为0的问题?可以参考以下两种解决方案

一、创建一个类注入PaginationInterceptor

@Configuration
public class MybatisPlusConfig {

    /**
     * 分页插件
     */
    @Bean
    public PaginationInterceptor paginationInterceptor() {
        return new PaginationInterceptor();
    }
}

二、去除pom.xml中的pagehelper的jar包

  
            com.github.pagehelper
            pagehelper-spring-boot-starter
            1.2.3
  

 

你可能感兴趣的:(Mybatis-Plus,java,开发常见问题)