问答详情
源自:3-3 项目架构搭建二

我想问下useDeprecatedExecutor=false还需要设置吗,因为3.4.1的Change log好像没看到相关的修改

/**
     * 新的分页插件,一缓和二缓遵循mybatis的规则,需要设置 MybatisConfiguration#useDeprecatedExecutor = false 避免缓存出现问题(该属性会在旧插件移除后一同移除)
     */
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.H2));
        return interceptor;
    }

    @Bean
    public ConfigurationCustomizer configurationCustomizer() {
        return configuration -> configuration.setUseDeprecatedExecutor(false);
    }

按照文档描述是要等旧插件移除后才会移除该属性

提问者:_BoBo_ 2021-01-16 16:12

个回答

  • 老猿
    2021-01-16 16:50:04

    你好,我视频中说的不太精确。3.4.1中为了避免缓存出问题,还是要设置useDeprecatedExecutor=false的,3.4.1还没有移除该属性。