使用旧版本的分页插件会出现这种问题

public class MybatisPlusConfig {
    //分页插件 旧版
    @Bean
    public PaginationInnerInterceptor paginationInnerInterceptor(){
        return new PaginationInnerInterceptor();
    }
}

 

换用高版本配置就能解决

 public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
        return interceptor;
    }

 

Posted on 2023-02-13 17:25  鱼忆七秒瓶中沙  阅读(640)  评论(0)    收藏  举报