爆红是因为这个属性已经删除了

解决方法:使用mybatis-plus最新分页插件

官网链接:https://mp.baomidou.com/guide/page.html

 点击左侧分页插件,即可找到最新版

这里顺便贴上目前最新的一版:

    // 最新版
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.H2));
        return interceptor;
    }

 在MybatisPlusConfig类里面配置这段就可以啦

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐