MyBatis-Plus updateById 不更新 null 字段
一、问题描述使用这两个方法,不会对实体中值为 Null 的属性(字段)进行更新。 123this.updateById(entity); this.update(entity, updateWrapper); 二、问题原因原因:mybatis-plus 的 fieldStrategy 的策略有三种,分别是 IGNORED-0-忽略,NOT_NULL-1-非 NULL(默认策略),NOT_EMPTY-2-非空,所