标签:mod 两种 lis 方法 集合 nts size 代码冗余 效率
一般有两种,第一是sublist(),代码冗余效率低;
第二种:
引包自
com.google.common.collect.Lists
话不多说直接上实例:
List<ContractModel> contractList = ****;
List<List<ContractModel>> partition = Lists.partition(contractList, Constants.BATCH_SIZE);
for (List<ContractModel> item : partition){
contractModelDao.updateContractBatch(item);
}
注:
updateContractBatch 是个批量方法;
Constants.BATCH_SIZE 50条;
标签:mod 两种 lis 方法 集合 nts size 代码冗余 效率
原文地址:https://www.cnblogs.com/beixiaoyi/p/10008901.html