spring boot集成mybatis puls分页成功但是不显示总行数

一、版本:


   com.baomidou
   mybatis-plus-boot-starter
   3.0.6

 

二、现象:

      分页成功,但是total为0,searchCount也显示为true; 

      "total": 0,
        "size": 10,
        "current": 1,
        "searchCount": true,
        "pages": 0

 

三、解决方法

      增加分页插件拦截,如下所示:

 

@Configuration
public class MybatisPlusConfig {

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

你可能感兴趣的:(JAVA,Spring,boot,mybatis)