java后台大数据量下的分批入库
2021-01-21 11:14
标签:计数器 count student entity obj empty 计数 入库 sem 对接入库数据,有时候数据量比较大,需要分批入库,写了一个分批入库的小方法 简单记录使用 java后台大数据量下的分批入库 标签:计数器 count student entity obj empty 计数 入库 sem 原文地址:https://www.cnblogs.com/innocenter/p/12895953.htmlif (!CollectionUtils.isEmpty(student)) {
// 计数器
int count = 1;
int total = student.size();
List
上一篇:选择排序