mybatis批量操作

Posted 好大的月亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis批量操作相关的知识,希望对你有一定的参考价值。

批量操作普通的可以使用foreach标签拼一下sql就行了,但是量多的,拼sql就不太合适了

foreach拼sql

使用这种方式需要在jdbc驱动链接里加上&allowMultiQueries=true参数,可以在sql语句后携带分号,实现多语句执行。同时可以执行批处理,同时发出多个SQL语句。

Integer updateShopNames(@Param("shopMemberIntentions") List<ShopMemberIntention> shopMemberIntentions);
<update id="updateShopNames" parameterType="java.util.List">
    <foreach collection="shopMemberIntentions" separator=";" item="item">
        update shop_member_intention set shop_name = #item.shopName,shop_simple_name = #item.shopSimpleName, gmt_modified = gmt_modified where id = #item.id
    </foreach>
</update>

sqlSessionFactory批量提交

@Autowired
private SqlSessionFactory sqlSessionFactory;
SqlSession sqlSession = sqlSessionFactory.openSession(ExecutorType.BATCH);
try 
    ShopMemberIntentionMapper mapper = sqlSession.getMapper(ShopMemberIntentionMapper.class);
    for (int i = 0; i < shopMemberIntentions.size(); i++) 
        mapper.updateShopName(shopMemberIntentions.get(i));
        if(i % 200 == 0)
            sqlSession.flushStatements();
        
    

    sqlSession.flushStatements();
    sqlSession.commit();
catch (Exception e) 
    log.error("supplementShopName() called with parameters => , exception = 【】", e.getMessage());
    sqlSession.rollback();
finally 
    sqlSession.close();

如果方法上用了@Transactional注解,由于在 Spring 集成的情况下,事务连接由 Spring 管理(SpringManagedTransaction),所以这里不需要手动关闭 sqlSession,在这里手动提交(commit)或者回滚(rollback)也是无效的。如果没有使用事务注解,那就一步一步来,提交了再关闭。

批量提交只能应用于 insert, update, delete。
并且在批量提交使用时,如果在操作同一SQL时中间插入了其他数据库操作,就会让批量提交方式变成普通的执行方式,所以在使用批量提交时,要控制好 SQL 执行顺序。

以上是关于mybatis批量操作的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis实现批量添加操作

MyBatis批量新增和更新

mybatis的批量删除操作

mybatis批量更新

mybatis 怎么批量更新操作

mybatis 批量操作数据