mybatis批量更新
mybatis批量操作 新增,更新
方式一
<update id="updateBatch" parameterType="java.util.List">
<foreach collection="list" item="item" index="index" open="" close="" separator=";">
update tableName
<set>
name=#{item.name},
name2=#{item.name2}
</set>
where id = #{item.id}
</foreach>
</update>
先贴上代码,这种更新简洁明了,使用for循环一条记录update一次,但效率不是很高。注意的是:MySQL 默认不支持多条 SQL 语句执行,所以需要在 MySQL 的 URL 后面添加 &allowMultiQueries=true 才能保证上述方式运行成功。还有一点要注意的是,H2 不支持这样的操作,公司项目里本地测境用的是 H2,线上用的是 MySQL,着实被这块小坑了一把。
方式二
<update id="list" parameterType="java.util.List">
update tableName
<trim prefix="set" suffixOverrides=",">
<trim prefix="owner_id =case" suffix="end,">
<foreach collection="list" item="item" index="index">
when full_id=#{item.originalFullId} then #{item.newOwnerId}
</foreach>
</trim>
<trim prefix="full_id =case" suffix="end,">
<foreach collection="list" item="item" index="index">
when full_id=#{item.originalFullId} then #{item.newFullId}
</foreach>
</trim>
</trim>
where full_id in
<foreach collection="list" index="index" item="item" separator="," open="(" close=")">
#{item.originalFullId,jdbcType=VARCHAR}
</foreach>
</update>
这种方式使用的SQL的 case-when-then 语法实现了批量更新,H2和MySQL都可以执行。
SQL语法原型:
UPDATE course
SET name = CASE id
WHEN 1 THEN 'name1'
WHEN 2 THEN 'name2'
WHEN 3 THEN 'name3'
END,
title = CASE id
WHEN 1 THEN 'New Title 1'
WHEN 2 THEN 'New Title 2'
WHEN 3 THEN 'New Title 3'
END
WHERE id IN (1,2,3)
这条sql的意思是,如果id为1,则name的值为name1,title的值为New Title1;依此类推,将所有的cast都给摆出来,对号入座。
mybatis拼出来的结果:
update mydata_table
set status =
case
when id = #{item.id} then #{item.status} end,
...
when id = id = #{item.id} then #{item.status} end
where id in (...);
trim标签:
<trim prefix="" suffix="" suffixOverrides="" prefixOverrides=""></trim>
prefix: 如果 trim 中有内容,则在 SQL 语句中加上 prefix 指定的字符串前缀。 prefixOverrides: 如果 trim 中有内容,去除 prefixOverrides 指定的多余的前缀内容。 suffix: 如果 trim 中有内容,则在 SQL 语句中加上 suffix 指定的字符串后缀。 suffixOverrides: 如果 trim 中有内容,去除 suffixOverrides 指定的多余的后缀内容。
这里有个要注意的地方:
方式二更新了两个字段: owner_id 和 full_id ,当数据库是 MySQL 时,这两个字段中谁是主键,则这个字段要放在最后更新,不然会更新失败。但如果数据库是 H2 ,则没有这个顺序要求。有点疑惑~~~
方式三
上述两种方法都是在拼SQL,他们被一些开发者吐槽是奇技淫巧。至于到底什么事奇技淫巧好像没有定义啊,我觉得还是得从场景、效率、可读性来评价当前实现方式的优劣。
mybatis对批量更新提供了正确打开方式:ExecutorType.BATCH。
这种方式不适合XML格式的mybatis操作。
方式四:
sql批量更新(通过insert实现)
传入的是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>来源:https://diego1109.github.io/学习笔记/2020/03/13/mybatis-batch-update/
一.更新多条数据,每条数据都不一样
背景描述:通常如果需要一次更新多条数据有两个方式,(1)在业务代码中循环遍历逐条更新。(2)一次性更新所有数据(更准确的说是一条sql语句来更新所有数据,逐条更新的操作放到数据库端,在业务代码端展现的就是一次性更新所有数据)。两种方式各有利弊,下面将会对两种方式的利弊做简要分析,主要介绍第二种方式在mybatis中的实现。
1.逐条更新(java实现)
这种方式显然是最简单,也最不容易出错的,即便出错也只是影响到当条出错的数据,而且可以对每条数据都比较可控,更新失败或成功,从什么内容更新到什么内容,都可以在逻辑代码中获取。代码可能像下面这个样子:
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>
这种方式最大的问题就是效率问题,逐条更新,每次都会连接数据库,然后更新,再释放连接资源(虽然通过连接池可以将频繁连接数据的效率大大提高,抗不住数据量大),这中损耗在数据量较大的时候便会体现出效率问题。这也是在满足业务需求的时候,通常会使用上述提到的第二种批量更新的实现(当然这种方式也有数据规模的限制,后面会提到)。
2.逐条更新(mybatis实现)
通过循环,依次执行多条update的sql
前提条件:
要实现批量更新,首先得设置mysql支持批量操作,在jdbc链接中需要附加&allowMultiQueries=true属性才行
例如:
jdbc:mysql://localhost:3306/dbname?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true
3.sql批量更新(主力实现)
(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>
作者:junehappylove
来源:CSDN
原文:https://blog.csdn.net/junehappylove/article/details/82215674
版权声明:本文为博主原创文章,转载请附上博文链接!
(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>
UPDATE t_goods SET NODE_ID = CASE WHEN GOODS_ID = ? THEN ? END WHERE GOODS_ID IN ( ? )
5.sql批量更新(通过insert实现)
传入的是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> 二.更新多条数据,更新的内容一样. 1.传map/传String 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> 实际的sqlUPDATE t_goods SET NODE_ID = ? WHERE GOODS_ID IN (1,2,5);
2.传map/传list
NODE_ID从map中取出来,goodsIdList是用list拼接出来的
UPDATE t_goods SET NODE_ID = ? WHERE GOODS_ID IN (1,2,5);
参考文章:https://www.cnblogs.com/eternityz/p/12284760.html
https://blog.csdn.net/lu1024188315/article/details/78758943
- 点赞
- 收藏
- 关注作者
评论(0)