把这段代码用多线程分批执行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 08:01:03 浏览: 141
ObjectUtil.java
这段代码执行了两个任务。首先,它检查 pushMailboxList 是否为空,如果不为空,则使用Java8的stream()和forEach()方法在每个元素上运行,该元素调用了 townShipService.getById(item.getPushOrgid()) 方法,获取镇的email地址并使用MailUtil.send()方法发送邮件。如果邮箱地址为空则记录发送失败。如果发送邮件时抛出了异常,则记录发送失败。最后,对于 pushList 的每个元素也执行类似的操作。
这段代码可以使用多线程分批执行,可以将forEach循环里面的操作放入一个线程池中执行,这样可以提高代码的执行效率。
阅读全文