java后台大数据量下的分批入库

2021-01-21 11:14

阅读:584

标签:计数器   count   student   entity   obj   empty   计数   入库   sem   

对接入库数据,有时候数据量比较大,需要分批入库,写了一个分批入库的小方法

if (!CollectionUtils.isEmpty(student)) {
                // 计数器
                int count = 1;
                int total = student.size();
                List stuList = new ArrayList();
                for (int f = 0; f ) {
                    StudentEntity entity = student.get(f);
                    entity.setId(IdUtil.objectId());
                    stuList .add(entity);
                    //200条入库一次
                    if (count % 200 == 0) {
                        studentService.insertBatchCustom(stuList);
                        stuList .clear();
                        count = 1;
                    }
                }
                if (!stuList .isEmpty()) {
                    studentService.insertBatchCustom(stuList);
                }
            }

简单记录使用

java后台大数据量下的分批入库

标签:计数器   count   student   entity   obj   empty   计数   入库   sem   

原文地址:https://www.cnblogs.com/innocenter/p/12895953.html


评论


亲,登录后才可以留言!