mybatis中使用foreach批量操作时报错,说语法有问题

问题:代码没问题,却提示说语法有问题

解决:连接mysql时,url的配置中需要加上该参数&allowMultiQueries=true

我这边是更新时,id列表需要拿去作为迭代对象。如果mapper中传入的是list集合,foreach中collection的值改为list即可

mapper

public int updateTCampBatch(TCampAddCheck tCampAddChecks);

xml代码

    <update id="updateTCampBatch">
    
        <foreach collection="ids" item="item" index="index" open="" close="" separator=";">
            update t_xx
            set `status` = #{status}
            where `id` = #{item}
        foreach>
    update>

愿能解决你的问题

参考:https://zhuanlan.zhihu.com/p/135839992 中的第三点

你可能感兴趣的:(mybatis,mysql,java)