Young87

SmartCat's Blog

So happy to code my life!

游戏开发交流QQ群号60398951

当前位置:首页 >跨站数据

mybatis-plus学习记录-更新值为null的字段无效

mybatis-plus学习记录-更新值为null的字段无效

在使用mybatis-plus所生成的saveOrUpdate方法的时候,有些字段需要更新为空值。但是mybatis-plus默认的策略是NOT_NULL,如果为空则不更新该字段。
解决方案:
1.在字段上使用@TableField注解,设置updateStrategy属性为FieldStrategy.IGNORED。
插入同理使用insertStrategy属性。但是这种做法有一定的危险性,所以不推荐。

@TableField(updateStrategy = FieldStrategy.IGNORED)
private String phone;

FieldStrategy 说明

public enum FieldStrategy {
    /**
     * 忽略判断
     */
    IGNORED,
    /**
     * 非NULL判断
     */
    NOT_NULL,
    /**
     * 非空判断(只对字符串类型字段,其他类型字段依然为非NULL判断)
     */
    NOT_EMPTY,
    /**
     * 默认的,一般只用于注解里
     * <p>1. 在全局里代表 NOT_NULL</p>
     * <p>2. 在注解里代表 跟随全局</p>
     */
    DEFAULT,
    /**
     * 不加入 SQL
     */
    NEVER
}

2.使用LambdaUpdateWrapper。这样一来业务层就多了很多冗余代码了。需要注意的是使用了UpdateWrapper之后,实体类中的主键就失效了,需要通过UpdateWrapper的eq()方法去设置主键,否则会把记录全都更新了。

AccountInfo accountInfo = new AccountInfo(accountInfoVo.getId(),accountInfoVo.getNickName(),accountInfoVo.getEmail(),accountInfoVo.getPhone(),accountInfoVo.getHeadImg(),accountInfoVo.getBirthday(),accountInfoVo.getNote(),account.getId());
LambdaUpdateWrapper<AccountInfo> updateWrapper = new LambdaUpdateWrapper<>();
updateWrapper.set(AccountInfo::getBirthday,accountInfoVo.getBirthday());
updateWrapper.set(AccountInfo::getEmail,accountInfoVo.getEmail());
updateWrapper.set(AccountInfo::getHeadImg,accountInfoVo.getHeadImg());
updateWrapper.set(AccountInfo::getNickName,accountInfoVo.getNickName());
updateWrapper.set(AccountInfo::getPhone,accountInfoVo.getPhone());
updateWrapper.set(AccountInfo::getNote,accountInfoVo.getNote());
updateWrapper.eq(AccountInfo::getId,accountInfoVo.getId());//千万别忘了设置主键
accountInfoService.saveOrUpdate(accountInfo,updateWrapper);
accountVo.getAccountInfo().setId(accountInfo.getId());

3.自己写mapper.xml,自己想怎么样就怎么样。业务层代码看起来会比较整洁

除特别声明,本站所有文章均为原创,如需转载请以超级链接形式注明出处:SmartCat's Blog

上一篇: 国产数据库操作系统强强联合,巨杉与银河麒麟完成兼容认证

下一篇: 数据库系统原理 - - (1)数据库系统概论

精华推荐