标签:char curl 相关 app ati clean 支持 报错 upd
问题 1:
mybatis拼接多条语句同时执行,报错,想在mapper的一个更新节点进行多条update语句的操作:
<update id="cleanUserByPhone" parameterType="java.lang.String"> update user set valid_status = 1 where mobile_phone = #{mobilePhone}; update user_account set valid_status = 1 where mobile_phone = #{mobilePhone} ; </update>
解决:
mybatis是默认不支持的,需要在数据库配置中配置相关参数:
propertes 或者yml配置 文件中的jdbc后追加&allowMultiQueries=true
jdbc.jdbcUrl=jdbc:mysql://127.0.0.1:3306/database?useUnicode=true&characterEncoding=utf8&allowMultiQueries=true
-------------------------------------------------------------------------------------------------------------------------------------------------------------
标签:char curl 相关 app ati clean 支持 报错 upd
原文地址:https://www.cnblogs.com/fightingtong/p/13156015.html