返回顶部
首页 > 资讯 > 后端开发 > Python >MyBatis-Plus乐观锁插件的用法小结
  • 252
分享到

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

2024-04-02 19:04:59 252人浏览 八月长安

Python 官方文档:入门教程 => 点击学习

摘要

目录什么是乐观锁:简介说明官网网址配置乐观锁插件Entity测试什么是乐观锁: 就是我们每一次操作数据后,我们就会更改他的版本号,当另外的线程若想要对该数据进行操作,检查版本号是否与

什么是乐观锁:

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

简介

说明

本文介绍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乐观锁插件内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

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

本文链接: https://lsjlt.com/news/165737.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作