当前位置:   article > 正文

mybatis-plus 通过 updateById 更新部分字段数据时出现所有数据被更新(被设为默认值)_mybatis updatebyid 只更新有值

mybatis updatebyid 只更新有值

int updateById(@Param(Constants.ENTITY) T entity);
  • 1

通过传入的 id 进行数据更新,默认只更新设置数据的字段。

@Data
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = true)
@TableName("user")
public class User {
    @TableId("userId")
    private int userId;
    private String password;
    private int type;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
@Mapper
public interface UserDao extends BaseMapper<User> {
}
  • 1
  • 2
  • 3
//这个方法用来更新用户的密码,user对象之设置了id和password属性
@Override
public void updateUserPassword(int userId, String password) {
    User user = new User();
    user.setUserId(userId);
    user.setPassword(password);
    userDao.updateById(user); 
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

但当执行时发现 type 属性也被更新了,且为 int 默认值 0。
一顿百度,什么也没查到之后发现
需要设置 实体类 user 的 type 为 Integer,因为 int 不能为 null,而 Integer 可以。

@Data
@AllArgsConstructor
@NoArgsConstructor
@Accessors(chain = true)
@TableName("user")
public class User {
    @TableId("userId")
    private Integer userId;
    private String password;
    private Integer type;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/870372
推荐阅读
相关标签
  

闽ICP备14008679号