@EnableScheduling @Component public class WorkNumReportSchedule { @Autowired private WorkTaskReportDetailService workTaskReportDetailService; // 工作日的17点半统计报工时间发送报工提醒消息 @Scheduled(cron = "0 30 17 * * ?") public void scheduleWorkingHoursStatistics() throws Exception { workTaskReportDetailService.encapsulationMessageEntity(DateUtil.formatDate(new Date(), "yyyy-MM-dd")); } }
明明是设置的下午5点半的定时任务,2点半的时候就执行了。