日常记录
Posted fightingtong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了日常记录相关的知识,希望对你有一定的参考价值。
问题 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
-------------------------------------------------------------------------------------------------------------------------------------------------------------
以上是关于日常记录的主要内容,如果未能解决你的问题,请参考以下文章