码迷,mamicode.com
首页 > 其他好文 > 详细

mybatis 批量update报语法错误解决方法

时间:2019-07-08 13:41:20      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:解决   cal   for   jdbc   close   encoding   语法   inf   amp   

1、为什么会报语法错误

  原因:在 *.xml文件内使用了循环,在mybatis中默认是不允许使用批量修改。

<update id="setMaxMin" parameterType="java.util.List">
    <foreach collection="list" item="item" index="index" open="" close="" separator=";">
        update fm_info
        <set>
            max_degree= #{item.maxDegree,jdbcType=decimal},
min_degree= #{item.minDegree,jdbcType=decimal},
degree= #{item.degree,jdbcType=decimal} </set> <where> id = #{item.id,jdbcType=INTEGER} </where> </foreach> </update>

2、解决方法

  在连接mysql的url后面加上 《   allowMultiQueries=true   》

jdbc.url=jdbc:mysql://localhost:3306/flow_meter?useUnicode=true&characterEncoding=utf-8&allowMultiQueries=true

 

mybatis 批量update报语法错误解决方法

标签:解决   cal   for   jdbc   close   encoding   语法   inf   amp   

原文地址:https://www.cnblogs.com/zhangweibin/p/11150306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!