您好,登錄后才能下訂單哦!
小編給大家分享一下MyBatisPlus邏輯刪除與唯一索引沖突的示例分析,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
在開發(fā)中,我們經(jīng)常會有邏輯刪除和唯一索引同時使用的情況。但當使用mybatis plus時,如果同時使用邏輯刪除和唯一索引,會報數(shù)據(jù)重復Duplicate entry的問題。
舉個例子:
原來數(shù)據(jù)庫結(jié)構(gòu):
這里location_id是唯一索引
CREATE TABLE `eam_location` ( `id` int(11) NOT NULL AUTO_INCREMENT, `location_id` varchar(50) UNIQUE NOT NULL COMMENT '位置代碼', `location_level` tinyint(1) NOT NULL COMMENT '位置級別', `location_name` varchar(50) NOT NULL COMMENT '位置名稱', `parent_location_id` varchar(50) COMMENT '上級位置代碼', `delete_flag` tinyint(1) DEFAULT 0 COMMENT '軟刪除', `version` int(11) DEFAULT 1 COMMENT '樂觀鎖', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
這里在刪除添加某一條數(shù)據(jù)后,delete_flag變成0,當刪除后delete_flag會變成1,再次添加相同的數(shù)據(jù)時,由于數(shù)據(jù)庫檢測不到原來數(shù)據(jù),會報數(shù)據(jù)重復Duplicate entry的問題
解決辦法:參考邏輯刪除與唯一約束的需求沖突
SQL數(shù)據(jù)結(jié)構(gòu),將delete_flag用時間戳進行表示,唯一索引變成了聯(lián)合唯一索引 UNIQUE KEY unique_location_delete_flag(location_id, delete_flag) ,當添加一條數(shù)據(jù)時,delete_flag變成null,當刪除數(shù)據(jù)時,delete_flag變成刪除時的一個時間戳。再次添加相同數(shù)據(jù)時,由于添加的數(shù)據(jù)是聯(lián)合唯一索引unique_location_delete_flag ,delete_flag為null,不會產(chǎn)生沖突,多次刪除也是,完美解決問題。
CREATE TABLE `eam_location` ( `id` int(11) NOT NULL AUTO_INCREMENT, `location_id` varchar(50) NOT NULL COMMENT '位置代碼', `location_level` tinyint(1) NOT NULL COMMENT '位置級別', `location_name` varchar(50) NOT NULL COMMENT '位置名稱', `parent_location_id` varchar(50) COMMENT '上級位置代碼', `delete_flag` datetime COMMENT '軟刪除', `version` int(11) DEFAULT 1 COMMENT '樂觀鎖', PRIMARY KEY (`id`), UNIQUE KEY `unique_location_delete_flag`(`location_id`, `delete_flag`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
entity類:
@AllArgsConstructor @NoArgsConstructor @Builder(toBuilder = true) @Data @EqualsAndHashCode(callSuper = false) public class EamEquipmentType implements Serializable { private static final long serialVersionUID = 1L; /** * 數(shù)據(jù)庫自增id */ @TableId(value = "id", type = IdType.AUTO) private Integer id; /** * 設(shè)備類型編號 */ private String typeId; /** * 設(shè)備類型 */ private String typeName; /** * 設(shè)備廠商 */ private String manufacture; /** * 設(shè)備型號 */ private String model; /** * 標準設(shè)備bom 0:未創(chuàng)建 1:已創(chuàng)建 */ private Boolean typeBom; /** * 標準設(shè)備bom id */ private Integer typeBomId; /** * 創(chuàng)建時間 */ private LocalDateTime createTime; /** * 軟刪除 */ @TableLogic() @TableField(fill = FieldFill.INSERT) private LocalDateTime deleteFlag; /** * 樂觀鎖 */ @Version @TableField(fill = FieldFill.INSERT) private Integer version;
yml配置文件:
mybatis-plus: global-config: db-config: logic-delete-value: "now()" #邏輯刪除值是個db獲取時間的函數(shù) logic-not-delete-value: "null" #邏輯未刪除值為字符串 "null"
以上是“MyBatisPlus邏輯刪除與唯一索引沖突的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學習更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。