MyBatis 多個條件使用Map傳遞參數進行批量刪除方式

多個條件使用Map傳遞參數進行批量刪除

1、使用場景

因為項目需要針對資源文件(視頻、音頻、文檔),編輯時候可能出現以下3種情況:

實現的項目效果圖:

1.1、刪除多個已經選擇的標簽(與本次文章相關內容)

1.2、新增標簽(選擇已有標簽作為新增,輸入新的標簽作為新增的)

因為本業務場景之中與此文章相關的內容 重點介紹一下如何,使用Map<String,Object> 參數傳遞過個參數進行批量刪除 資源標簽關系表記錄信息。

2、代碼實現

由於此功能需要在取消選擇當前資源標簽之中的,以前已經選擇過的標簽,需要傳遞兩個參數進行刪除【資源標簽關系記錄表】之中的記錄,主要有資源id(resourceId),多個標簽的ids(deleteTagIdList)。具體代碼如下所示:

Java接口定義及MyBatis語句定義代碼

/**
 * 刪除資源標簽關系表之中相關信息
 * @param deleteTagRelationParams
 * @return
 */
int deleteBatchEnclosureTagRelationList(Map<String, Object> deleteTagRelationParams);
 
<!-- 批量刪除 課程資源標簽 -->
	<delete id="deleteBatchEnclosureTagRelationList"  parameterType="hashmap">
		 delete from course_enclosure_tag where resource_id=#{resourceId} AND tag_id in 
        <foreach collection="deleteTagIdList" item="tagId" separator="," open="(" close=")">
            #{tagId}
        </foreach>
	</delete>

具體業務操作Java代碼

if(deleteTagList.size()>0){
	List<Long> deleteTagIdList=new ArrayList<Long>();
	for(Map<String, Object> itemMap:deleteTagList) {
		Long delTagId=Long.parseLong(itemMap.get("id").toString());
		deleteTagIdList.add(delTagId);
	}
	Map<String, Object> deleteTagRelationParams=new HashMap<String, Object>();
	deleteTagRelationParams.put("resourceId", courseEnclosure.getId());
	deleteTagRelationParams.put("deleteTagIdList", deleteTagIdList);
	deleteBatchEnclosureTagRelationList(deleteTagRelationParams);
}

註意事項:deleteTagIdList 參數的List<Long>類型一定要和接口函數之中的類型一致;本人定義接口參數

Long delTagId=Long.parseLong(itemMap.get("id").toString());
// 必須是Long定義類型List 如果使用long定義後端無法執行的
 
long delTagId=Long.parseLong(itemMap.get("id").toString());

3、實現結果展現

MyBatis 多條件批量刪除的sql語句

今天在寫代碼的過程中,有一個批量刪除的需求,且這個刪除的條件是三個字段組成的聯合主鍵。

一開始我們新手可能會想到在service層使用for循環來多次調用mapper層的刪除方法,這樣雖然能夠實現功能,但是消耗的系統資源很多,效率不高。

我也在網上找瞭找,發現這樣的例子很少

我把這次的代碼貼出來,僅供參考

代碼如下:

<delete id="deletePubPrintTmplComputers" parameterType="java.util.List">
            delete from PUB_PRINT_TMPL_COMPUTER
            <foreach collection="listData" item="item" separator="or" index="index">
                <where>
                    <if test="item.tmplCode != null">
                        and TMPL_CODE = #{item.tmplCode, jdbcType=VARCHAR}
                    </if>
                    <if test="item.tmplSeq != null">
                        and TMPL_SEQ = #{item.tmplSeq, jdbcType=INTEGER}
                    </if>
                    <if test="item.computerCode != null">
                        and COMPUTER_CODE = #{item.computerCode,jdbcType=VARCHAR}
                    </if>
                </where>
            </foreach>
    </delete>

這裡是使用foreach語法進行批量操作,要特別註意的是,在每個if判斷中,條件語句末尾不要加逗號,不然會報錯,顯示sql命令未正確結束。

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: