MyBatis提供了两种方法来执行批处理操作:使用batch标签和使用foreach标签。
<insert id="batchInsert" parameterType="java.util.List">
<foreach collection="list" item="item" index="index" separator=";">
INSERT INTO table_name (column1, column2) VALUES (#{item.value1}, #{item.value2})
</foreach>
</insert>
<insert id="batchInsert" parameterType="java.util.List">
<foreach collection="list" item="item" index="index" separator=";">
INSERT INTO table_name (column1, column2) VALUES (#{item.value1}, #{item.value2})
</foreach>
</insert>
这两种方法都可以实现批处理操作,具体使用哪种方法取决于个人偏好和实际情况。