mybatis批处理

Posted 南村一哥

tags:

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

int temp = monomerProductInfoList.size()/500;
for(int i=0;i<temp;i++){
    monomerProductInfoDao.insertBatch(monomerProductInfoList.subList(i*500,i*500+500));
}
monomerProductInfoDao.insertBatch(monomerProductInfoList.subList(temp*500,monomerProductInfoList.size()));
<insert id="insertBatch" parameterType="java.util.ArrayList">
    insert into monomer_product_info(pk_id,excel_id,monomer_num,monomer_barcode,module_included,monomer_model,monomer_standard,real_content,real_voltage,real_quality,production_date,create_user,create_date,del_flag,department_id)
    <foreach collection="list" item="item" index="index" separator="union all">
        select #{item.pkId},#{item.excelId},#{item.monomerNum},#{item.monomerBarcode},#{item.moduleIncluded},#{item.monomerModel},#{item.monomerStandard},#{item.realContent},#{item.realVoltage},#{item.realQuality},#{item.productionDate,jdbcType=DATE},#{item.createUser},#{item.createDate,jdbcType=DATE},#{item.delFlag},#{item.departmentId} from dual
    </foreach>
</insert>

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

Mybatis关于复杂的SQL查询的处理&Mybatis的缓存机制

Mybatis关于复杂的SQL查询的处理&Mybatis的缓存机制

mybatis学习(39):动态sql片段

SSM-MyBatis-05:Mybatis中别名,sql片段和模糊查询加getMapper

mybatis动态sql片段与分页,排序,传参的使用

MyBatis动态SQL标签用法