MyBatis-Plus乐观锁插件的用法小结

乐观锁很乐观,对任何事情都保持着一个乐观的态度,认为别人不会修改数据,所以不会上锁,只是在更新数据的时候,去判断这条数据有没有被别人修改过,这篇文章主要介绍了MyBatis-Plus乐观锁插件的用法,需要的朋友可以参考下

什么是乐观锁:

就是我们每一次操作数据后,我们就会更改他的版本号,当另外的线程若想要对该数据进行操作,检查版本号是否与自己获得的版本号一致,如果不一致,那么我们就会取消该操作。

简介

说明

本文介绍Mybatis-Plus的乐观锁插件的用法。

官网网址

乐观锁插件 | MyBatis-Plus

配置乐观锁插件

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

Entity

版本号的字段上加注解

    @Version
    private Integer version;

说明:

  • 支持的数据类型只有:int,Integer,long,Long,Date,Timestamp,LocalDateTime
  • 整数类型下 newVersion = oldVersion + 1
  • newVersion 会回写到 entity 中
  • 仅支持 updateById(id) 与 update(entity, wrapper) 方法
  • 在 update(entity, wrapper) 方法下, wrapper 不能复用!!!

测试

MP会把设置进去的版本号当作更新条件,并且版本号+1更新进去。

@Test
public void update(){
	User user = userMapper.getById(1L);
	user.setEmail("Test1111@email.com");
	user.setUpdateTime(LocalDateTime.now());
 
	int update = userMapper.updateById(user);
	System.out.println(update);
}
DEBUG==>  Preparing: UPDATE sys_user SET email=?, update_time=?, version=? WHERE id=? AND version=? 
DEBUG==> Parameters: Test1111@email.com(String), 2019-09-19T16:00:38.149(LocalDateTime), 2(Integer), 1(Long), 1(Integer)
DEBUG<==    Updates: 1

到此这篇关于MyBatis-Plus乐观锁插件的用法的文章就介绍到这了,更多相关MyBatis-Plus乐观锁插件内容请搜索编程学习网以前的文章希望大家以后多多支持编程学习网!

本文标题为:MyBatis-Plus乐观锁插件的用法小结

基础教程推荐