java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Mybatis-plus null值更新不生效

Mybatis-plus null值更新不生效问题解决

作者:chao09_01

在使用Mybatis-plus进行数据更新时,默认策略是NOT_NULL,即null值不会被更新到数据库,解决方法包括设置全局field-strategy、对特定字段设置field-strategy或使用UpdateWrapper方式更新,下面就来介绍一下

默认的mybatic-plus执行updateById等操作时,如果相关字段内容是null值,不会自动进行更新的,这是个坑,需要注意。

问题原因

mybatis-plus FieldStrategy 有三种策略:

默认更新策略是NOT_NULL:非 NULL;即通过接口更新数据时数据为NULL值时将不更新进数据库。

解决方案

1. 设置全局的field-strategy

properties文件格式:

mybatis-plus.global-config.db-config.field-strategy=ignored

yml文件格式:

mybatis-plus:
  global-config:
      #字段策略 0:"忽略判断",1:"非 NULL 判断",2:"非空判断"
    field-strategy: 0

这样做是全局性配置,会对所有的字段都忽略判断,如果一些字段不想要修改,但是传值的时候没有传递过来,就会被更新为null,可能会影响其他业务数据的正确性。

2. 对某个字段设置单独的field-strategy

根据具体情况,在需要更新的字段中调整验证注解,如验证非空:

@TableField(strategy=FieldStrategy.NOT_EMPTY)

这样的话,我们只需要在需要更新为null的字段上,设置忽略策略,如下:

@TableField(strategy = FieldStrategy.IGNORED)
private String dutyJson;

在更新代码中,我们直接使用mybatis-plus中的updateById方法便可以更新成功,如下:

/**
 * updateById更新字段为null
 * @param id
 * @return
 */
@Override
public boolean updateProductById(Integer id) {
    InsuranceProduct insuranceProduct = Optional.ofNullable(articleMapper.selectById(id)).orElseThrow(RuntimeException::new);
    insuranceProduct.setDutyJson(null);
    insuranceProductMapper.updateById(insuranceProduct);
}

使用上述方法,如果需要这样处理的字段较多,那么就需要涉及对各个字段上都添加该注解,显得有些麻烦了。那么,可以考虑使用第三种方法,不需要在字段上加注解也能更新成功。

3. 使用UpdateWrapper方式更新(推荐使用)

在mybatis-plus中,除了updateById方法,还提供了一个update方法,直接使用update方法也可以将字段设置为null,代码如下:

/**
* 根据商品唯一编码,更新商品责任的dutyjson
*/
  public int updateProduct(String productCode) {
	    InsuranceProduct old = lambdaQuery().eq(InsuranceProduct::getProductCode, productCode).one();
        UpdateWrapper<InsuranceProduct> wrapper = new UpdateWrapper<>();
        wrapper.lambda().eq(InsuranceProduct::getProductCode, productCode)
                .set(InsuranceProduct::getDutyJson, null)
                .eq(InsuranceProduct::getDeleted, 0);
        return getBaseMapper().update(old, wrapper);
    }

这种方式不影响其他方法,不需要修改全局配置,也不需要在字段上单独加注解,所以推荐使用该方式。

到此这篇关于Mybatis-plus null值更新不生效问题解决的文章就介绍到这了,更多相关Mybatis-plus null值更新不生效内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文