问答详情
源自:4-2 分页查询

为什么idea现在显示PaginationInterCeptor不再建议使用了,而变成了PaginationInnerInterCeptor,使用这个又没有效果

http://img2.mukewang.com/5f998cb10001444907060102.jpg

http://img1.mukewang.com/5f998d080001e0d807470152.jpg

使用这个后没效果

提问者:码义小小 2020-10-28 23:25

个回答

  • 老猿
    2020-10-30 23:44:08

    我用的是下面这个写法,有效果,是在他官方文档上提供的写法。
    
    /**
     * 新的分页插件,一缓和二缓遵循mybatis的规则,需要设置 MybatisConfiguration#useDeprecatedExecutor = false 避免缓存出现问题(该属性会在旧插件移除后一同移除)
     */
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
        return interceptor;
    }
    
    @Bean
    public ConfigurationCustomizer configurationCustomizer() {
        return configuration -> configuration.setUseDeprecatedExecutor(false);
    }