当前使用版本(必填,否则不予处理)
v-3.5.1 文档没更新吧,setUseDeprecatedExecutor已经没有了
该问题是如何引起的?(确定最新版也有问题再提!!!)
重现步骤(如果有就写完整)
必现
报错信息
没报错
Comment From: hi-jungle
Comment From: waveBoom
看了下,应该是没更新,那个字段已经去除了 3.5.1版本
Comment From: CzyerChen
目前看了官方文档还是显示旧版本的书写方式 引入3.5.1的版本还是不清楚如何书写 在网上查询到以下写法,正确吗?何时能更新官方文档?
@Bean public MybatisPlusInterceptor mybatisPlusInterceptor() { MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor(); //乐观锁 interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor()); //分页锁 interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL)); return interceptor; }
Comment From: ka-zii