当前位置:   article > 正文

mybatis 开启批量提交_mybatis分批提交

mybatis分批提交

## 当我们在开发中,需要多次update或者insert,但是又想提高效率,这时可以用批量提交的方式。批量提交最常见的就是在mapper中使用foreach标签,除了foreach方式,还有另外一种。

···java

@Resource
private SqlSessionTemplate sqlSessionTemplate;
SqlSession sqlSession = sqlSessionTemplate.getSqlSessionFactory().openSession(ExecutorType.BATCH, false);
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
try {
    for(int i=0; i<10; i++) {
        User user = new User();
        mapper.insert(user);
    }

    sqlSession.commit();
} catch (Exception e) {
    e.printStackTrace();
    sqlSession.rollback();
    throw new RuntimeException(e);
} finally {
    sqlSession.close();
}

···

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/759107
推荐阅读