1. 程式人生 > >mybatis中update執行多次

mybatis中update執行多次

首先得在連結資料庫的url中加入
mysql中

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

最後一個allowMultiQueries=true

    <update id="updateItems" parameterType="QueryVo">
        <foreach collection="itemsList" item="item" separator=";"
> update items set name =#{item.name} where id = #{item.id} </foreach> </update>