<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
背景描述:通常如果需要一次更新多條資料有兩個方式,(1)在業務程式碼中迴圈遍歷逐條更新。(2)一次性更新所有資料(更準確的說是一條sql語句來更新所有資料,逐條更新的操作放到資料庫端,在業務程式碼端展現的就是一次性更新所有資料)。兩種方式各有利弊,下面將會對兩種方式的利弊做簡要分析,主要介紹第二種方式在mybatis中的實現。
這種方式顯然是最簡單,也最不容易出錯的,即便出錯也只是影響到當條出錯的資料,而且可以對每條資料都比較可控,更新失敗或成功,從什麼內容更新到什麼內容,都可以在邏輯程式碼中獲取。程式碼可能像下面這個樣子:
updateBatch(List<MyData> datas){ for(MyData data : datas){ try{ myDataDao.update(data);//更新一條資料,mybatis中如下面的xml檔案的update } catch(Exception e){ ...//如果更新失敗可以做一些其他的操作,比如說列印出錯紀錄檔等 } } } //mybatis中update操作的實現 <update> update mydata set ... where ... </update>
這種方式最大的問題就是效率問題,逐條更新,每次都會連線資料庫,然後更新,再釋放連線資源(雖然通過連線池可以將頻繁連線資料的效率大大提高,抗不住資料量大),這中損耗在資料量較大的時候便會體現出效率問題。這也是在滿足業務需求的時候,通常會使用上述提到的第二種批次更新的實現(當然這種方式也有資料規模的限制,後面會提到)。
通過迴圈,依次執行多條update的sql
前提條件:
要實現批次更新,首先得設定mysql支援批次操作,在jdbc連結中需要附加&allowMultiQueries=true屬性才行
例如:
jdbc:mysql://localhost:3306/dbname?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true
<update id="updateBatch" parameterType="java.util.List"> <foreach collection="list" item="item" index="index" open="" close="" separator=";"> update course <set> name=${item.name} </set> where id = ${item.id} </foreach> </update>
一條記錄update一次,效能比較差,容易造成阻塞。
(1)、實際實踐(傳入的是List<Map<String, Object>>)
務必注意:一定要加where條件,裡面的id為需要更新的資料的id;如果不加where條件,則會全部更新,但是需要更新且有資料的更新為傳遞的資料,沒有資料的則更新為null,此時更新出錯
<update id="updateChartParamByAccountAndChartid" parameterType="list"> update followme_parameters <trim prefix="set" suffixOverrides=","> <trim prefix="signal_source =case" suffix="end,"> <foreach collection="list" item="item" index="index"> <if test="item.signalSource!=null"> when account=#{item.account} and chart_id=#{item.chartId} then #{item.signalSource} </if> </foreach> </trim> <trim prefix="rate =case" suffix="end,"> <foreach collection="list" item="item" index="index"> <if test="item.rate!=null"> when account=#{item.account} and chart_id=#{item.chartId} then #{item.rate} </if> </foreach> </trim> </trim> where id in <foreach collection="list" item="item" index="index" separator="," open="(" close=")"> #{item.id} </foreach> </update>
另外文章的樣板
<update id="updateBatch" parameterType="list"> update course <trim prefix="set" suffixOverrides=","> <trim prefix="peopleId =case" suffix="end,"> <foreach collection="list" item="i" index="index"> <if test="i.peopleId!=null"> when id=#{i.id} then #{i.peopleId} </if> </foreach> </trim> <trim prefix=" roadgridid =case" suffix="end,"> <foreach collection="list" item="i" index="index"> <if test="i.roadgridid!=null"> when id=#{i.id} then #{i.roadgridid} </if> </foreach> </trim> <trim prefix="type =case" suffix="end," > <foreach collection="list" item="i" index="index"> <if test="i.type!=null"> when id=#{i.id} then #{i.type} </if> </foreach> </trim> <trim prefix="unitsid =case" suffix="end," > <foreach collection="list" item="i" index="index"> <if test="i.unitsid!=null"> when id=#{i.id} then #{i.unitsid} </if> </foreach> </trim> </trim> where <foreach collection="list" separator="or" item="i" index="index" > id=#{i.id} </foreach> </update>
(2)、下面逐步講解
一條sql語句來批次更新所有資料,下面直接看一下在mybatis中通常是怎麼寫的(去掉mybatis語法就是原生的sql語句了,所有就沒單獨說sql是怎麼寫的)。
<update id="updateBatch" parameterType="java.util.List"> update mydata_table set status= <foreach collection="list" item="item" index="index" separator=" " open="case ID" close="end"> when #{item.id} then #{item.status} </foreach> where id in <foreach collection="list" index="index" item="item" separator="," open="(" close=")"> #{item.id,jdbcType=BIGINT} </foreach> </update>
其中when...then...是sql中的"switch" 語法。這裡藉助mybatis的語法來拼湊成了批次更新的sql,上面的意思就是批次更新id在updateBatch引數所傳遞List中的資料的status欄位。還可以使用實現同樣的功能,程式碼如下:
<update id="updateBatch" parameterType="java.util.List"> update mydata_table <trim prefix="set" suffixOverrides=","> <trim prefix="status =case" suffix="end,"> <foreach collection="list" item="item" index="index"> when id=#{item.id} then #{item.status} </foreach> </trim> </trim> where id in <foreach collection="list" index="index" item="item" separator="," open="(" close=")"> #{item.id,jdbcType=BIGINT} </foreach> </update> <trim>
屬性說明
1.prefix,suffix 表示在trim標籤包裹的部分的前面或者後面新增內容
2.如果同時有prefixOverrides,suffixOverrides 表示會用prefix,suffix覆蓋Overrides中的內容。
3.如果只有prefixOverrides,suffixOverrides 表示刪除開頭的或結尾的xxxOverides指定的內容。
上述程式碼轉化成sql如下:
update mydata_table set status = case when id = #{item.id} then #{item.status}//此處應該是<foreach>展開值 ... end where id in (...);
當然這是最簡單的批次更新實現,有時候可能需要更新多個欄位,那就需要將
<trim prefix="status =case" suffix="end,"> <foreach collection="list" item="item" index="index"> when id=#{item.id} then #{item.status} </foreach> </trim>
複製拷貝多次,更改prefix和when...then...的內容即可.而如果當需要為某個欄位設定預設值的時候可以使用else
<trim prefix="status =case" suffix="end,"> <foreach collection="list" item="item" index="index"> when id=#{item.id} then #{item.status} </foreach> else default_value </trim>
還有更常見的情況就是需要對要更新的資料進行判斷,只有符合條件的資料才能進行更新,這種情況可以這麼做:
<trim prefix="status =case" suffix="end,"> <foreach collection="list" item="item" index="index"> <if test="item.status !=null and item.status != -1"> when id=#{item.id} then #{item.status} </if> </foreach> </trim>
這樣的話只有要更新的list中status != null && status != -1的資料才能進行status更新.其他的將使用預設值更新,而不會保持原資料不變.如果要保持原資料不變呢?即滿足條件的更新,不滿足條件的保持原資料不變,簡單的來做就是再加一個,因為mybatis中沒有if...else...語法,但可以通過多個實現同樣的效果,如下:
<trim prefix="status =case" suffix="end,"> <foreach collection="list" item="item" index="index"> <if test="item.status !=null and item.status != -1"> when id=#{item.id} then #{item.status} </if> <if test="item.status == null or item.status == -1"> when id=#{item.id} then mydata_table.status //這裡就是原資料 </if> </foreach> </trim>
整體批次更新的寫法如下:
<update id="updateBatch" parameterType="java.util.List"> update mydata_table <trim prefix="set" suffixOverrides=","> <trim prefix="status =case" suffix="end,"> <foreach collection="list" item="item" index="index"> <if test="item.status !=null and item.status != -1"> when id=#{item.id} then #{item.status} </if> <if test="item.status == null or item.status == -1"> when id=#{item.id} then mydata_table.status//原資料 </if> </foreach> </trim> </trim> where id in <foreach collection="list" index="index" item="item" separator="," open="(" close=")"> #{item.id,jdbcType=BIGINT} </foreach> </update>
(1)、單個欄位方法1
<update id="updateByBatch" parameterType="java.util.List"> update t_goods set NODE_ID= <foreach collection="list" item="item" index="index" separator=" " open="case" close="end"> when GOODS_ID=#{item.goodsId} then #{item.nodeId} </foreach> where GOODS_ID in <foreach collection="list" index="index" item="item" separator="," open="(" close=")"> #{item.goodsId,jdbcType=BIGINT} </foreach> </update>
(2)、單個欄位方法2
<update id="updateByBatch" parameterType="java.util.List"> UPDATE t_goods SET NODE_ID = CASE <foreach collection="list" item="item" index="index"> WHEN GOODS_ID = #{item.goodsId} THEN #{item.nodeId} </foreach> END WHERE GOODS_ID IN <foreach collection="list" index="index" item="item" open="(" separator="," close=")"> #{item.goodsId} </foreach> </update>
以上單欄位更新實際執行:
UPDATE t_goods SET NODE_ID = CASE WHEN GOODS_ID = ? THEN ? END WHERE GOODS_ID IN ( ? )
傳入的是List<Map<String,Object>>
直接執行插入,如果有插入的資料轉為更新該條資料
<insert id="updateChartParamByAccountAndChartid"> insert into followme_parameters (account,chart_id,signal_source,rate) values <foreach collection="list" separator="," index="index" item="item"> (#{item.account},#{item.chartId},#{item.signalSource},#{item.rate}) </foreach> ON duplicate KEY UPDATE signal_source=values(signal_source),rate=values(rate) </insert>
NODE_ID從map中取出來,goodsIdList是字串拼接好的(如下面的"1,2,5")
<update id="updateByBatchPrimaryKey" parameterType="java.util.Map"> UPDATE t_goods SET NODE_ID = #{nodeId} WHERE GOODS_ID IN (${goodsIdList}) </update>
實際的sql
UPDATE t_goods SET NODE_ID = ? WHERE GOODS_ID IN (1,2,5);
NODE_ID從map中取出來,goodsIdList是用list拼接出來的
<update id="updateByBatchPrimaryKey" parameterType="java.util.Map"> UPDATE t_goods SET NODE_ID = #{nodeId} WHERE GOODS_ID IN <foreach collection="list" index="index" item="item" open="(" separator="," close=")"> #{item.goodsId} </foreach> </update>
實際的sql
UPDATE t_goods SET NODE_ID = ? WHERE GOODS_ID IN (1,2,5);
參考文章:
主力:https://blog.csdn.net/xyjawq1/article/details/74129316/
輔助:https://www.jianshu.com/p/041bec8ae6d3
到此這篇關於Mybatis中updateBatch實現批次更新 的文章就介紹到這了,更多相關Mybatis 批次更新內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45