Mybatis-plus更新字段为null两种常用方法及优化,
分享于 点击 23409 次 点评:202
Mybatis-plus更新字段为null两种常用方法及优化,
目录
- 前言
- 1、在实体类的属性上增加注解:@TableField(updateStrategy = FieldStrategy.IGNORED)
- 2、使用LambdaUpdateWrapper的set更新
- 优化:
- 结论:使用update(entity, updateWrapper)更新
- 总结
前言
更新时,把某些字段的值更新为null,但是目前mybatis-plus的update/updateById会忽略实体类中为null的字段,导致这些字段没有更新还是原来的值。
网上比较常用的有两种:
1、在实体类的属性上增加注解:@TableField(updateStrategy = FieldStrategy.IGNORED)
/** * 手机号 **/ @TableField(updateStrategy = FieldStrategy.IGNORED) private String phone;
缺点:当在其它接口更新别的字段时,本来没有想更新这个字段,但是也会把这个字段更新为null。
2、使用LambdaUpdateWrapper的set更新
// set更新 LambdaUpdateWrapper<UserEntity> updateWrapper = Wrappers.lambdaUpdate(); updateWrapper.set(UserEntity::getPhone, null); updateWrapper.eq(UserEntity::getUserId, "0001"); userMapper.update(null, updateWrapper);
缺点:需要一个一个属性set,比较麻烦。我平常使用的都是从DTO直接copy到Entity里面,要是updateWrapper.set的话比较繁琐,而且有的值为null时不更新。
优化:
还是使用LambdaUpdateWrapper的set更新,方法update(entity, updateWrapper)当第一个参数实体类entity不为null时,其中entity中为null的属性不会更新,不为null的会更新, updateWrapper.set()是不论是否为null都更新。
既可以携程:
LambdaUpdateWrapper<UserEntity> updateWrapper = Wrappers.lambdaUpdate(); if (StringUtils.isEmpty(phone)) { // 这个值为null,才set,不然sql里面会两次赋值,执行sql时报错 updateWrapper.set(UserEntity::getPhone, null); } updateWrapper.eq(UserEntity::getUserId, "0001"); UserEntity entity = new UserEntity(); entity.setName("张三"); entity.setAge(null); userMapper.update(null, updateWrapper);
说明:根据userId更新,name为张三,phone为null,而age不更新。
SQL:
update user set name = '张三', phone = null where user_id = '0001'
结论:使用update(entity, updateWrapper)更新
属性为null不更新,使用entity保存;若属性为null时更新表中字段为null,则用updateWrapper.set()保存数据,set前需要判断这个属性的值为null。
总结
到此这篇关于Mybatis-plus更新字段为null两种常用方法及优化的文章就介绍到这了,更多相关Mybatis-plus更新字段为null内容请搜索3672js教程以前的文章或继续浏览下面的相关文章希望大家以后多多支持3672js教程!
您可能感兴趣的文章:- Mybatis-Plus中update()和updateById()将字段更新为null
- mybatis-plus更新字段为null的处理方式
- Mybatis-Plus使用updateById()、update()将字段更新为null
- MyBatis-plus更新对象时将字段值更新为null的实现方式
- Mybatis-plus如何更新Null字段详解
- mybatis-plus支持null字段全量更新的两种方法
- 解决Mybatis-Plus更新方法不更新NULL字段的问题
用户点评