电光石火-穿越时空电光石火-穿越时空


MyBatis-Plus乐观锁Parameter ‘MP_OPTLOCK_VERSION_ORIGINAL‘ not found.

文档地址 https://mybatis.plus/guide/interceptor.html#mybatisplusinterceptor

开启乐观锁

@EnableTransactionManagement
@Configuration
public class MyBatisPlusConfig {
    @Bean
    public MybatisPlusInterceptor optimisticLockerInnerInterceptor(){
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new OptimisticLockerInnerInterceptor());
        return interceptor;
    }
}

实体类字段加上

    /**
     * 乐观锁
     */
    @Version
    protected Long version;
本博客所有文章如无特别注明均为原创。作者:似水的流年
版权所有:《电光石火-穿越时空》 => MyBatis-Plus乐观锁Parameter ‘MP_OPTLOCK_VERSION_ORIGINAL‘ not found.
本文地址:http://www.ilkhome.cn/index.php/archives/759/
欢迎转载!复制或转载请以超链接形式注明,文章为 似水的流年 原创,并注明原文地址 MyBatis-Plus乐观锁Parameter ‘MP_OPTLOCK_VERSION_ORIGINAL‘ not found.,谢谢。

评论