springboot+Mybatis+MySql 一个update标签中执行多条update sql语句
Posted yjl33
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot+Mybatis+MySql 一个update标签中执行多条update sql语句相关的知识,希望对你有一定的参考价值。
mysql默认是不支持这种骚操作的,但是并不代表不能实现,只需要在jdbc的配置文件中稍做配置:
driver=com.mysql.jdbc.Driver
url=jdbc:mysql://127.0.0.1:3306/airipo?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true
username=imp
password=123
其中,allowMultiQueries=true这个配置是关键,必须写
然后在映射文件中的标签下将多条sql用;隔开即可,示例代码:
<insert id="addUser" parameterType="User" >
insert into t_users (name,password,phone) values (#name, #password,#phone);
insert into t_dep (depname) values (#depname)
</insert>
<update id="updateBatchSingle" parameterType="java.util.List"> <foreach collection="list" item="item" index="index" open="" close=";" separator=";"> update user <set> status=#item.status </set> where id = #item.id </foreach> </update>
以上是关于springboot+Mybatis+MySql 一个update标签中执行多条update sql语句的主要内容,如果未能解决你的问题,请参考以下文章
springboot+mybatis+Druid配置多数据源(mysql+postgre)
SpringBoot示例教程MySQL与Mybatis基础用法
Springboot第四章 ORM (MyBatis) 操作 MySQL