在MyBatis中执行批处理操作的最佳实践如下:
public interface UserMapper {
void batchInsert(List<User> userList);
}
<insert id="batchInsert" parameterType="java.util.List">
insert into user (id, name, age) values
<foreach item="user" collection="list" separator=",">
(#{user.id}, #{user.name}, #{user.age})
</foreach>
</insert>
List<User> userList = new ArrayList<>();
// 添加需要批处理的数据到userList中
userMapper.batchInsert(userList);
SqlSession session = sqlSessionFactory.openSession();
try {
UserMapper userMapper = session.getMapper(UserMapper.class);
// 执行批处理操作
userMapper.batchInsert(userList);
// 手动提交事务
session.commit();
} finally {
session.close();
}
通过以上步骤,可以实现在MyBatis中使用executeBatch的最佳实践,确保数据的正确保存和事务的正确提交。