以前发送都是正常,每日两条,每天早8:00 和晚18:00
但是最近出现早8:00推送两条问题;
稍后完成代码审查,问题修复!
@PersistJobDataAfterExecution
@DisallowConcurrentExecution
@Configuration
public class AutoSendEmailJob extends QuartzJobBean{
private static final Logger LOGGER = LoggerFactory.getLogger(AutoSendEmailJob.class);
@Autowired
private EmailService emailService;
@Override
protected void executeInternal(JobExecutionContext arg0) throws JobExecutionException {
LOGGER.info("===================每日发送邮件【start】===================");
emailService.sendEmail();
LOGGER.info(