问答详情
源自:4-2 乐观锁实现及注意事项

加入乐观锁导致自动填充updateTime失效

http://img.mukewang.com/5e3e696a0001d3e115480774.jpg

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

http://img4.mukewang.com/5e3e69fa0001064d14620860.jpghttp://img2.mukewang.com/5e3e69f9000156ae15290257.jpg

我在正常的自动填充测试的时候time都是正常自动插入了,然后配置了乐观锁就导致updateTime插入为null。

@Configuration
public class MybatisPlusConfiguration {

    //  乐观锁插件
    @Bean
    public OptimisticLockerInterceptor optimisticLockerInterceptor() {
        return new OptimisticLockerInterceptor();
    }
}
@Version
private Integer version;

这两个我都加了,这是什么情况?老师请教下。

提问者:Ethan_Lu 2020-02-08 16:00

个回答

  • 老猿
    2020-02-08 20:54:58

    同学,你用的Mybatis-Plus是哪个版本?我也试试。

  • Ethan_Lu
    2020-02-09 09:46:02

    3.3.0版本