搞个乐观锁,测试类一直不能修改成功,用覆盖率运行了下,发现config包下的拦截器居然0%覆盖运行。。。
麻了,@Configuration这个注解没配。。。。
@Configuration
public class MpConfig {
@Bean
public MybatisPlusInterceptor mpInterceptor() {
//1.定义Mp拦截器
MybatisPlusInterceptor mpInterceptor = new MybatisPlusInterceptor();
//2.添加乐观锁拦截器
mpInterceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
return mpInterceptor;
}
}
Comments | NOTHING