把这段代码用多线程分批执行if (ObjectUtil.isNotEmpty(pushMailboxList)) { pushMailboxList.stream().forEach(item -> { Township byId = townshipService.getById(item.getPushOrgid()); try { String email = byId.getEmail(); if (StrUtil.isNotBlank(email)) { String date = DateTime.now().toString(DatePattern.CHINESE_DATE_TIME_PATTERN); String content = "金平县气象局于" + date + ",发布了" + repProductContent.getReportName() + "气象服务通知,请您查收并注意做好防范工作。"; //发送邮件 MailUtil.send(email, repProductContent.getReportName(), content, false, FileUtil.file(filePath)); item.setIzEmailSuccess(1); pushMailboxList1.add(item); } else { item.setIzEmailSuccess(0); pushMailboxList1.add(item); } } catch (Exception e) { item.setIzEmailSuccess(0); pushMailboxList1.add(item); e.printStackTrace(); } }); } //修改推送表 if (ObjectUtil.isNotEmpty(pushList)) { //多线程执行pushList.forEach pushList.forEach(item -> { SysUser user = sysUserService.getById(item.getPushUserid()); String errorMsg = this.getById(item.getId()).getErrorMsg(); if (StrUtil.isBlank(errorMsg)) { cn.hutool.json.JSONObject jsonObject = new cn.hutool.json.JSONObject(); jsonObject.put("mmErrorMsg", ""); jsonObject.put("wxErrorMsg", ""); errorMsg = jsonObject.toString(); } cn.hutool.json.JSONObject jsonObject1 = new cn.hutool.json.JSONObject(errorMsg); try { String email = user.getEmail(); if (StrUtil.isNotBlank(email)) { //发送邮件 String date = DateTime.now().toString(DatePattern.CHINESE_DATE_TIME_PATTERN); String content = "金平县气象局于" + date + ",发布了" + repProductContent.getReportName() + "气象服务通知,请您查收并注意做好防范工作。"; //发送邮件 MailUtil.send(email, repProductContent.getReportName(), content, false, FileUtil.file(filePath)); jsonObject1.put("mmErrorMsg", "邮箱推送成功"); item.setIzEmailSuccess(1).setErrorMsg(jsonObject1.toString()); repProductPushList.add(item); } else { jsonObject1.put("mmErrorMsg", "邮箱推送失败,用户邮箱为空"); item.setIzEmailSuccess(0).setErrorMsg(jsonObject1.toString()); repProductPushList.add(item); } } catch (Exception e) { jsonObject1.put("mmErrorMsg", "邮箱账号有误"); item.setIzEmailSuccess(0).setErrorMsg(jsonObject1.toString()); repProductPushList.add(item); log.error("生成pdf文件失败" + e.getMessage()); // e.printStackTrace(); } }); }
时间: 2023-02-08 21:01:03 浏览: 135
这段代码执行了两个任务。首先,它检查 pushMailboxList 是否为空,如果不为空,则使用Java8的stream()和forEach()方法在每个元素上运行,该元素调用了 townShipService.getById(item.getPushOrgid()) 方法,获取镇的email地址并使用MailUtil.send()方法发送邮件。如果邮箱地址为空则记录发送失败。如果发送邮件时抛出了异常,则记录发送失败。最后,对于 pushList 的每个元素也执行类似的操作。
这段代码可以使用多线程分批执行,可以将forEach循环里面的操作放入一个线程池中执行,这样可以提高代码的执行效率。
相关问题
把这段代码修改为多线程分批执行没20条分一批 if (ObjectUtil.isNotEmpty(pushMailboxList)) { pushMailboxList.stream().forEach(item -> { Township byId = townshipService.getById(item.getPushOrgid()); try { String email = byId.getEmail(); if (StrUtil.isNotBlank(email)) { String date = DateTime.now().toString(DatePattern.CHINESE_DATE_TIME_PATTERN); String content = "金平县气象局于" + date + ",发布了" + repProductContent.getReportName() + "气象服务通知,请您查收并注意做好防范工作。"; //发送邮件 MailUtil.send(email, repProductContent.getReportName(), content, false, FileUtil.file(filePath)); item.setIzEmailSuccess(1); pushMailboxList1.add(item); } else { item.setIzEmailSuccess(0); pushMailboxList1.add(item); } } catch (Exception e) { item.setIzEmailSuccess(0); pushMailboxList1.add(item); e.printStackTrace(); } }); }
如果要将上述代码修改为多线程分批执行每20条分一批,可以这样做:
1. 将原来的forEach循环替换为for循环,并设置循环变量i和每批数量batchSize(20)
2. 使用Java中的线程池创建一个线程池,并在循环中提交任务
3. 在任务中使用subList方法将原始数据分成每批数量的数据块
4. 等待所有任务完成
示例代码如下:
```
if (ObjectUtil.isNotEmpty(pushMailboxList)) {
int batchSize = 20;
int listSize = pushMailboxList.size();
ExecutorService executor = Executors.newFixedThreadPool(5);
for (int i = 0; i < listSize; i += batchSize) {
List<PushMailbox> subList = pushMailboxList.subList(i, Math.min(i + batchSize, listSize));
executor.submit(() -> {
subList.stream().forEach(item -> {
Township byId = townshipService.getById(item.getPushOrgid());
try {
String email = byId.getEmail();
if (StrUtil.isNotBlank(email)) {
String date = DateTime.now().toString(DatePattern.CHINESE_DATE_TIME_PATTERN);
String content = "金平县气象局于" + date + ",发布了" + repProductContent.getReportName() + "气象服务通知,请您查收并注意做好防范工作。";
//发送邮件
MailUtil.send(email, repProductContent.getReportName(), content, false, FileUtil.file(filePath));
item.setIzEmailSuccess(1);
pushMailboxList1.add(item);
} else {
item.setIzEmailSuccess(0);
pushMailboxList1.add(item);
}
} catch (Exception e) {
item.setIzEmailSuccess(0);
pushMailboxList1.add(item);
e.printStackTrace();
}
});
});
}
executor.shutdown();
try {
帮我优化这段代码: //如果不存在组织信息,则禁用 if (ObjectUtil.isEmpty(empXwempInfo)) { flowProxyEntity.setStatus("1"); flowProxyEntity.setCloseReason(MessageFormat.format("原因:未查询到部门信息,权限关闭,时间:【{0}】", new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()))); } else if (ObjectUtil.isNotEmpty(proxyEntity)) { flowProxyEntity.setStatus("0"); } if(ObjectUtil.isNotEmpty(empXwempInfo)){ flowProxyEntity.setDeptCode(empXwempInfo.getDepartmentCode()); flowProxyEntity.setPositionCode(empXwempInfo.getPositioncode()); } if (ObjectUtil.isEmpty(proxyEntity)) { flowProxyService.save(flowProxyEntity); } else { flowProxyEntity.setId(proxyEntity.getId()); flowProxyService.updateById(flowProxyEntity); }
以下是对该段代码的优化建议:
1. 使用常量或枚举类型替代“1”和“0”这样的魔法数字,提高代码可读性和可维护性。
2. 避免多次判断 empXwempInfo 是否为空,可以在最开始对其进行一次判断后,将是否为空的结果保存为一个布尔值,后面直接使用这个布尔值即可。
3. 对于 save 和 updateById 操作,可以使用一个变量来保存要执行的方法,避免重复代码。
4. 在设置 closeReason 的时候使用 StringBuilder 类型的变量,避免多次使用字符串拼接操作。
改写后的代码如下:
```
if (ObjectUtil.isEmpty(empXwempInfo)) {
flowProxyEntity.setStatus(Status.DISABLE.getCode());
StringBuilder closeReason = new StringBuilder("原因:未查询到部门信息,权限关闭,时间:【")
.append(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date())).append("】");
flowProxyEntity.setCloseReason(closeReason.toString());
} else {
boolean isProxyNotEmpty = ObjectUtil.isNotEmpty(proxyEntity);
flowProxyEntity.setStatus(isProxyNotEmpty ? Status.ENABLE.getCode() : Status.DISABLE.getCode());
flowProxyEntity.setDeptCode(empXwempInfo.getDepartmentCode());
flowProxyEntity.setPositionCode(empXwempInfo.getPositioncode());
FlowProxyService.MethodToExecute methodToExecute = isProxyNotEmpty ?
FlowProxyService.MethodToExecute.UPDATE : FlowProxyService.MethodToExecute.SAVE;
if (methodToExecute == FlowProxyService.MethodToExecute.SAVE) {
flowProxyService.save(flowProxyEntity);
} else {
flowProxyEntity.setId(proxyEntity.getId());
flowProxyService.updateById(flowProxyEntity);
}
}
```
其中,Status 是一个枚举类型,表示状态码,MethodToExecute 是一个枚举类型,表示要执行的方法。这样,代码就更加简洁、易读、易维护了。
阅读全文