赞
踩
项目技术栈:jdk (1.8) + spring boot (2.1.0) + mybatis-plus (3.5.1)
数据库: MySQL
字段类型:varchar 和 Integer
从前端传过来的数据实体字段, convertType 和 step 设为null时,使用mybatis-plus 的 updateById方法往数据库中更新时,这两个字段不更新,数据不为空可以插入。
mybatis-plus在更新的时候做了null判断,默认不更新为null的传参。
有两种方法都可以解决这个问题,都是加注解
3.1 @TableField(fill = FieldFill.UPDATE)
在需要更新的字段上加上 mybatis plus 的注解 @TableField(fill = FieldFill.UPDATE) ,它的作用是字段填充时要更新此字段
@ApiModelProperty("转换值")
@TableField(fill = FieldFill.UPDATE)
private String convertValue;
@ApiModelProperty("步长")
@TableField(fill = FieldFill.UPDATE)
private Integer step;
3.2 @TableField(updateStrategy = FieldStrategy.IGNORED)
在实体类对应字段上添加上这个注解,它的作用是忽略NULL值的判断
@ApiModelProperty("转换值")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private String convertValue;
@ApiModelProperty("步长")
@TableField(updateStrategy = FieldStrategy.IGNORED)
private Integer step;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。