|
|
|
@ -124,16 +124,12 @@ public class StackOrderService {
|
|
|
|
|
|
|
|
|
|
//校验码在数据库中是否重复
|
|
|
|
|
//每1000个一次查询,按照码数量分批
|
|
|
|
|
int batchNum = codeList.size() / 1000 + (codeList.size() % 1000 != 0 ? 1 : 0);
|
|
|
|
|
CountDownLatch checkCodeCDL = new CountDownLatch(batchNum);
|
|
|
|
|
|
|
|
|
|
for (int i = 1; i <= batchNum; i++) {
|
|
|
|
|
int start = (i - 1) * 1000;
|
|
|
|
|
int end = i == 1 ? (codeList.size() - 1) : i * 1000;
|
|
|
|
|
List<String> codePage = codeList.subList(start, end);
|
|
|
|
|
List<List<String>> codePage = ListUtil.split(codeList, 1000);
|
|
|
|
|
CountDownLatch checkCodeCDL = new CountDownLatch(codePage.size());
|
|
|
|
|
|
|
|
|
|
for (List<String> codes : codePage) {
|
|
|
|
|
QueryWrapper<StackCode> wrapper = new QueryWrapper<>();
|
|
|
|
|
wrapper.in("code", codePage);
|
|
|
|
|
wrapper.in("code", codes);
|
|
|
|
|
|
|
|
|
|
executorService.submit(() -> {
|
|
|
|
|
Long count = stackCodeDao.selectCount(wrapper);
|
|
|
|
|