溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mybatis batch如何實現(xiàn)批量提交大量數(shù)據(jù)

發(fā)布時間:2020-07-20 15:49:49 來源:億速云 閱讀:1962 作者:小豬 欄目:編程語言

小編這次要給大家分享的是mybatis batch如何實現(xiàn)批量提交大量數(shù)據(jù),文章內(nèi)容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

很多人在用 MyBatis 或者 通用 Mapper 時,經(jīng)常會問有沒有批量插入和批量更新的方法。

實際上許多時候沒必要用 <foreach> 去實現(xiàn)特別復(fù)雜的批量操作。直接通過 MyBatis 的 BATCH 方式執(zhí)行增刪改方法即可。

下面是一個批量用法的例子:

在xml文件配置多條參數(shù)同時插入:

<insert id="insertBatch3" parameterType="ctas.entity.SharkFlt">
   <selectKey keyProperty="recId" order="BEFORE" resultType="Long">
   select SEQ_CTAS_SHARK_FLT.nextval as recId from dual
  </selectKey>
   insert into CTAS_SHARK_FLT (<include refid="Base_Column_List"/>) SELECT SEQ_TEST.NEXTVAL, A.*
   FROM (
   <foreach collection="list" item="item" index="index" open="" close="" separator="union all">
    select #{item.awbType,jdbcType=VARCHAR}, #{item.awbPre,jdbcType=VARCHAR},... from dual
 </foreach>
  ) A
 </insert>

在Java代碼中,oracle中一次執(zhí)行的sql語句長度是有限制的,如果最后拼出來的sql字符串過長,會導(dǎo)致執(zhí)行失敗,所以java端還要做一個分段處理,參考下面的處理:

List<SharkFlt> data = new ArrayList<SharkFlt>();
     for (TSharkFlt f : sharkFlts) {
       data.add(getSharkFlt(f));
     }
 
    System.out.println(data.size());
     long beginTime = System.currentTimeMillis();
    System.out.println("開始插入...");
     SqlSessionFactory sqlSessionFactory 
=ctx.getBean(SqlSessionFactory.class);
     SqlSession session = null;
    try {
       session = sqlSessionFactory.openSession(ExecutorType.BATCH, false);
       int a = 2000;//每次提交2000條
       int loop = (int) Math.ceil(data.size() / (double) a);
 
       List<SharkFlt> tempList = new ArrayList<SharkFlt>(a);
      int start, stop;
      for (int i = 0; i < loop; i++) {
        tempList.clear();
        start = i * a;
        stop = Math.min(i * a + a - 1, data.size() - 1);
        System.out.println("range:" + start + " - " + stop);
        for (int j = start; j <= stop; j++) {
           tempList.add(data.get(j));
        }
         session.insert("ctas.importer.writer.mybatis.mappper.SharkFltMapper.insertBatch3", tempList);
        session.commit();
        session.clearCache();
         System.out.println("已經(jīng)插入" + (stop + 1) + " 條");
       }
     } catch (Exception e) {
       e.printStackTrace();
       session.rollback();
    } finally {
      if (session != null) {
        session.close();
      }
     }
    long endTime = System.currentTimeMillis();
    System.out.println("插入完成,耗時 " + (endTime - beginTime) + " 毫秒!");

看完這篇關(guān)于mybatis batch如何實現(xiàn)批量提交大量數(shù)據(jù)的文章,如果覺得文章內(nèi)容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI