在MyBatis中,可以通過使用<foreach>
標簽實現批量執行SQL語句。具體步驟如下:
<update id="batchInsert" parameterType="java.util.List">
insert into table_name (column1, column2) values
<foreach collection="list" item="item" separator=",">
(#{item.column1}, #{item.column2})
</foreach>
</update>
List<Data> dataList = new ArrayList<>();
// add data to dataList
mapper.batchInsert(dataList);
通過以上步驟,就可以在MyBatis中實現批量執行SQL語句的功能。