MyBatis提供了兩種方法來執(zhí)行批處理操作:使用batch標(biāo)簽和使用foreach標(biāo)簽。
<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>
這兩種方法都可以實現(xiàn)批處理操作,具體使用哪種方法取決于個人偏好和實際情況。