mybatis-Plus 将字段更新为null

默认mybatis-plus对值为null的字段不进行更新,若要更新为null,可采用如下方式

LambdaUpdateWrapper updateWrapper = Wrappers.lambdaUpdate();
updateWrapper.eq(Person::getUserName, "张三");
updateWrapper.set(ProjectInfo::getPhoneNumber, null);
PersonMapper.update(person, updateWrapper);

 

你可能感兴趣的:(mybatis-Plus相关,mybatis,java)