优秀的编程知识分享平台

网站首页 > 技术文章 正文

Mybatis执行多条语句/批量更新方式

nanyue 2024-10-26 11:18:53 技术文章 2 ℃

Mybatis执行多条语句/批量更新

Mybatis实现多条语句

通常用在删除主表信息同时删除子表信息。

如果利用多次Dao进行执行sql,程序就写起来麻烦并且阅读难度会提升。

(删除income表中的信息,同时删除子表income_detail表中的相关信息)

  1. delete from income_detail where income_id=#{id};
  2. delete from income where id=#{id};

或者是批量更新,比如利用foreach批量update多条数据。

  1. <update id="update">
  2. <foreach collection="xxList" item="item" index="index" open="" close="" separator=";">
  3. update t_xxx
  4. <set>
  5. xxx = #{item.xxx}
  6. </set>
  7. where id = #{item.id}
  8. </foreach>
  9. </update>

这些语句的类似点在于都是在mybatis中带有分号的多条sql。

而直接执行又会报错,所以我们需要在jdbc连接中加上allowMultiQueries参数,设置为true。

  1. <property name="url" value="jdbc:mysql://localhost:3306/amoeba?characterEncoding=UTF-8&allowMultiQueries=true"/>
  1. jdbc.url=jdbc:mysql://localhost:3306/amoeba?characterEncoding=UTF-8&allowMultiQueries=true

Mybatis同时执行多条语句

有个常见的场景:删除用户的时候需要先删除用户的外键关联数据,否则会触发规则报错。

解决办法不外乎有三个

  • 1、多条sql分批执行
  • 2、存储过程或函数调用
  • 3、sql批量执行

今天我要说的是MyBatis中如何一次执行多条语句(使用mysql数据库)。

1、修改数据库连接参数加上allowMultiQueries=true,如:

  1. hikariConfig.security.jdbcUrl=jdbc:mysql://xx.xx.xx:3306/xxxxx?characterEncoding=utf-8&autoReconnect=true&failOverReadOnly=false&allowMultiQueries=true

2、直接写多条语句,用“;”隔开即可

  1. <delete id="deleteUserById" parameterType="String">
  2. delete from sec_user_role where userId=#{id};
  3. delete from sec_user where id=#{id};
  4. </delete>

仅此而已!!!

Tags:

最近发表
标签列表