MyBatis提供了两种方式来实现批量修改数据:
<update id="batchUpdate" parameterType="java.util.List">
UPDATE table_name
SET column1 = #{listProperty.property1},
column2 = #{listProperty.property2}
WHERE id = #{listProperty.id}
</update>
在Java代码中,调用上述的batchUpdate
方法时传入一个包含多个对象的List即可。
<update id="batchUpdate" parameterType="java.util.Map">
<foreach collection="list" item="item" index="index" open="(" close=")" separator=";">
UPDATE table_name
SET column1 = #{item.property1},
column2 = #{item.property2}
WHERE id = #{item.id}
</foreach>
</update>
在Java代码中,调用上述的batchUpdate
方法时传入一个Map对象,其中包含一个名为list
的List属性,该List属性中存放需要批量修改的对象。
以上两种方式都可以实现批量修改数据,选择哪种方式取决于具体的需求和实际情况。