mybatis-plus update方法
阿新 • • 發佈:2021-12-05
在沒有修改之前,是用的
userService.updateById(user);
這個方法訪問的話會出現一些問題。修改的時候,傳入很多值,修改失敗的情況。
看mybatis-plus官方文件,修改的話可以用 update方法,然後用條件構造器指定一些匹配方式,然後傳入一個實體類,實體類裡面有什麼內容就修改什麼內容。
條件構造器
修改了相關程式碼:
使用者修改密碼:
controller 層:
/** * 修改 */ @LoginRequired @RequestMapping("/update") public R update(@RequestBody UserEntity user) { if (user == null) { return R.error("引數不能為空").put("code", LexueConstant.REGISTER_PARAM_EMPTY); } //1-學生,2-教師,3-管理員 if (user.getUserType() != null && user.getUserType() != 1 && user.getUserType() != 2 && user.getUserType() != 3) { return R.error("使用者型別指定錯誤,1-學生,2-教師,3-管理員").put("code", LexueConstant.REGISTER_USER_TYPE_ERROR); } if (user.getUsername() != null && !StringJudge.checkUsername(user.getUsername())) { return R.error("賬號需6-12位的字母或數字").put("code", LexueConstant.REGISTER_USERNAME_ERROR); } if (user.getEmail() != null && !StringJudge.checkEmail(user.getEmail())) { return R.error("請輸入正確的郵箱").put("code", LexueConstant.REGISTER_EMAIL_ERROR); } //注意,這裡不能修改密碼,因為是單向加密的形式,所以這裡只能把密碼設定成初始狀態:123456 if (user.getPassword() != null && user.getPassword().equals("123456")) { user.setPassword(bCryptPasswordEncoder.encode("123456")); } else if (user.getPassword()!=null&&!user.getPassword().equals(userService.getById(user.getId()).getPassword())) { return R.error("只能設定密碼為“123456”,請在修改密碼的位置修改密碼").put("code", LexueConstant.NOT_UPDATE_PASSWORD); } userService.updateUser(user); // userService.updateById(user); return R.ok(); }
service層
@Override public R updateUser(UserEntity userEntity) { if(userEntity==null){ return R.error("引數不能為空").put("code", LexueConstant.NOT_NULL); } if(userEntity.getId()==null||userEntity.getId()<=0){ return R.error("使用者id不能為空").put("code", LexueConstant.NOT_NULL); } UpdateWrapper<UserEntity> updateWrapper = new UpdateWrapper<>(); updateWrapper.eq("id",userEntity.getId()); Integer rows = userDao.update(userEntity, updateWrapper); return R.ok().put("code", LexueConstant.SUCCESS).put("影響的行數", rows+"行"); }
idea重新打包,釋出到雲伺服器上重新執行:
postman修改測試:
後臺頁面重新整理後:
本文來自部落格園,作者:五行缺知識,轉載請註明原文連結:https://www.cnblogs.com/wyw123456/p/15645524.html