mybatis如何在一个update标签中写多条update语句
mybatis如何在一个update标签中写多条update语句
在mapper里,一个update标签中写了多条update语句,在执行时会抛出SQL异常,是因为在mybatis中默认不支持同时执行多条语句。
语句如下:
<update id="updateUserState"> update sys_user set sys_user_state = #{param2} where sys_user_id = #{param1}; update sys_user set sys_user_state = #{param2} where sys_user_id = #{param1}; update sys_user set sys_user_state = #{param2} where sys_user_id = #{param1}; </update>
解决方案
在propertes 或者yml配置文件中找到mysql的jdbc链接,在其后追加&allowMultiQueries=true
例如:
url: jdbc:mysql://127.0.0.1:3306/${db.name}?characterEncoding=utf8&useSSL=false&zeroDateTimeBehavior=convertToNull&serverTimezone=Asia/Shanghai&allowMultiQueries=true
mybatis支持批量update
有的时候我们需要将我们拼接的多条update语句放在mysql一个<update>标签去执行,像平常那样是不行的。
这就需要我们改一些东西了,首先我们需要在我们jdbcurl上拼接上allowMultiQueries=true,如下:
url="jdbc:mysql://localhost:8066/TESTDB?allowMultiQueries=true"
这个时候我们就可以在我们的<update>标签中写多个update语句了
如果update语句太多的话,比如有个上千条:我们可以在mysql 的my.cnf中配置如下:
wait_timeout=31536000 interactive_timeout=31536000
oracle数据库
<update id="updatebatch" parameterType="java.util.List"> <foreach collection="list" item="item" index="index" open="begin" close="end;" separator=";"> update table_name <set > <if test="item.status != null" > status = #{item.status,jdbcType=INTEGER}, </if> </set> where id = #{item.id,jdbcType=BIGINT} </foreach> </update>
mysql数据库
mysql数据库采用一下写法即可执行,但是数据库连接必须配置:&allowMultiQueries=true
例如:
jdbc:mysql://192.168.1.232:3306/test?useUnicode=true&characterEncoding=UTF-8&allowMultiQueries=true
<update id="updatebatch" parameterType="java.util.List"> <foreach collection="list" item="item" index="index" open="" close="" separator=";"> update table_name <set > <if test="item.status != null" > status = #{item.status,jdbcType=INTEGER}, </if> </set> where id = #{item.id,jdbcType=BIGINT} </foreach> </update>
当然我们页可以在代码中动态拼接如下:
public int batchUpdateTfrData(IRequest r, List<Long> aeTfrIdList, String mes, String accountStatus) { StringBuffer str = new StringBuffer(); for(int i = 0; i < aeTfrIdList.size(); ++i) { str.append("update hsae_ae_tfr_events set ACCOUNTING_STATUS "); str.append(" = '" + accountStatus + "'"); if (mes != null) { str.append(", ACCOUNTING_REMARKS"); str.append(" = '" + mes + "'"); } str.append(CommonUtils.whoUpdate(r)); str.append(" where TFR_EVENT_ID ="); str.append(aeTfrIdList.get(i)); str.append(";"); } this.aeEventBatchesMapper.updateSourceData(str.toString()); return aeTfrIdList.size(); }
xml:
<update id="updateSourceData" parameterType="string"> ${sqlText} </update>
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
spring boot获取session的值为null问题及解决方法
我在登陆的时候,登陆成功后将name存进了session,然后在获取个人信息时取出session里的name的值为null,接下来通过本文给大家分享springboot获取session的值为null问题,需要的朋友可以参考下2023-05-05Springboot整合Jedis实现单机版或哨兵版可切换配置方法
这篇文章主要介绍了Springboot整合Jedis实现单机版或哨兵版可切换配置方法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2023-11-11Intellij IDEA集成JProfiler性能分析工具
作为Java程序员,性能分析是我们必须掌握的技能之一,在性能分析中,JProfiler是一款非常强大的工具,本文就来介绍一下Intellij IDEA集成JProfiler性能分析工具,就有一定的参考价值,感兴趣的可以了解一下2023-12-12
最新评论