在MyBatis中正確使用executeBatch需要以下步驟:
<update id="batchInsertUsers" parameterType="java.util.List">
INSERT INTO users (id, name, age) VALUES
<foreach collection="list" item="user" separator=",">
(#{user.id}, #{user.name}, #{user.age})
</foreach>
</update>
List<User> userList = new ArrayList<>();
// 添加用戶到userList中
mapper.batchInsertUsers(userList);
void batchInsertUsers(List<User> userList);
<setting name="autoCommit" value="false"/>
通過以上步驟,就可以正確使用MyBatis的executeBatch來進行批量操作。在執(zhí)行批量操作時,MyBatis會將參數(shù)列表中的數(shù)據(jù)一次性傳遞給數(shù)據(jù)庫執(zhí)行,從而提高效率和性能。