您好,登錄后才能下訂單哦!
springboot中怎么利用mybatis-plus和oracle實現邏輯刪除,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
1、用戶實體類
package com.sie.demo.entity; import com.alibaba.fastjson.annotation.JSONField; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableLogic; import com.baomidou.mybatisplus.annotation.TableName; import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; import java.io.Serializable; import java.sql.Timestamp; //@Data:作用于類上,是以下注解的集合:@ToString @EqualsAndHashCode @Getter @Setter @RequiredArgsConstructor @Data @AllArgsConstructor @NoArgsConstructor @TableName("Users") public class Users implements Serializable { private static final long serialVersionUID = 30L; //mabatis-plus:數據庫的字段命名方式為使用下劃線連接,對應的實體類應該是駝峰命名方式 String userName; String password; String name; int status; int sex; @JSONField(format ="yyyy-MM-dd HH:mm:ss") Timestamp createTime; @JSONField(format ="yyyy-MM-dd HH:mm:ss") Timestamp updateTime; String email; String note; @TableId("user_id") long userId; String phoneNumber; @TableLogic//這個標簽用來標識這是個用來偽刪除的字段 @TableField("IS_DELETE") int isDelete; public Users(String userName, String password) { this.userName = userName; this.password = password; } }
2、yml配置
mybatis-plus: global-config: db-config: logic-delete-value: 1 # 邏輯已刪除值(默認為 1) logic-not-delete-value: 0 # 邏輯未刪除值(默認為 0)
3、service層,
@Override /** * 刪除用戶 */ public Integer deleteUserByIds(String[] userSelected) { Wrapper wrapper = new QueryWrapper(); List userIds = Arrays.asList(userSelected); return userMapper.deleteBatchIds(userIds); }
4、controller層
@DeleteMapping("delete") public RetResult<PageUserVo> deleteUserByIds(String[] ids){ Integer isDelete = userService.deleteUserByIds(ids); if (isDelete != 0){ return RetResponse.makeRsp(200,"刪除成功"); }else { return RetResponse.makeRsp(500,"刪除失敗"); } }
5、運行后控制臺的sql語句直接就是update了
看完上述內容,你們掌握springboot中怎么利用mybatis-plus和oracle實現邏輯刪除的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。