mybatis mysql 批量插入

Posted wangkecheng

tags:

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

场景描述:

  使用mybatis操作mysql数据库,进行批量插入数据,提高代码质量和执行效率。

环境:

  mybatis  spring  mysql  java  

xml配置文件

<insert id ="batchInsert" parameterType="java.util.List" >
        insert into table
        (column1,column2,column3)
        values
        <foreach collection ="list" item="item" index= "index" separator =",">
            (
            <if test="item.param1 != ‘‘ || item.param1 != null">
                #{item.param1},
            </if>
            <if test="item.param2 != ‘‘ and item.param2 != null">
                #{item.param2},
            </if>
            <if test="item.param3 != ‘‘ and item.param3 != null">
                #{item.param3}
            </if>
            )
        </foreach >
</insert >

 

  

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

MySQLのmybatis批量插入数据

Mybatis 3+Mysql 实现批量插入

mybatis foreach批量插入数据:Oracle与MySQL区别

mybatis学习之路----mysql批量新增数据

oracle的批量插入和mysql的批量插入不一致,mybatis要怎么做兼容

Mysql 调整 Mybatis 批量插入数量限制