对比一下

/**
*分段批量处理
*看看什么是垃圾代码
*/
	public void saveRepaystatList(List tiuRepaystatList) {
		SqlMapExecutor executor = getSqlMapExecutor();
		try {
			int size = tiuRepaystatList.size();
			int section = 500;
			int count = size / section + 1;
			long totleTime = 0;
			System.out.println("个人担保信息数据开始批量保存---------------------");
			for (int m = 0; m < count; m++) {
				System.out.println("开始保存第 " + m + " 部分数据" + "本次执行 " + m* section + "-----"+ ((m + 1) * section > size ? size : (m + 1) * section)+ " 数据");
				long startTime = System.currentTimeMillis();
				executor.startBatch();
				for (int i = m * section; i < ((m + 1) * section > size ? size: (m + 1) * section); i++) {
					TiuRepaystat tiuRepaystat = (TiuRepaystat) tiuRepaystatList.get(i);
					executor.insert("insertTiuRepaystat", tiuRepaystat);
				}
				executor.executeBatch();
				long endTime = System.currentTimeMillis();
				totleTime = totleTime + (endTime - startTime);
				System.out.println("本次执行共耗费时间 " + (endTime - startTime) + " ms");
			}
			System.out.println("个人24月还款状态保存结束----------共花费时间" + totleTime+ "-----------");
		} catch (SQLException e) {
			throw new DaoException("个人24月还款状态保存失败.  Cause: " + e, e);
		}
	}
	

 

 

/**
*看看对比一下
*/

			if (tiuEmpList.isEmpty()) {
				return;
			}
			Iterator iter = tiuEmpList.iterator();
			int count = 0;
			while (iter.hasNext()) {
				if (count == 0) {
					executor.startBatch();
				}
				TiuEmp tiuEmp = (TiuEmp)iter.next();
				tiuEmp.setCerttype(StringUtils.defaultIfEmpty(CROSS_REFERENCES.get(CTFC_NAME+ tiuEmp.getCerttype()), "X"));
				executor.insert("insertTiuEmp", tiuEmp);
				
				if (count == 500 || !iter.hasNext()) {
					executor.executeBatch();
					count = 0;
				}
			}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值