Mybatis-Plus分页查询返回total为0解决

一、创建一个类注入PaginationInterceptor

  1.  
    @Configuration
  2.  
    public class MybatisPlusConfig {
  3.  
     
  4.  
    /**
  5.  
    * 分页插件
  6.  
    */
  7.  
    @Bean
  8.  
    public PaginationInterceptor paginationInterceptor() {
  9.  
    return new PaginationInterceptor();
  10.  
    }
  11.  
    }

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

  1.  
    <dependency>
  2.  
    <groupId>com.github.pagehelper</groupId>
  3.  
    <artifactId>pagehelper-spring-boot-starter</artifactId>
  4.  
    <version>1.2.3</version>
  5.  
    </dependency>

 

posted @ 2020-08-20 09:23  南方卖菜  阅读(7734)  评论(0编辑  收藏  举报