<!-- Spring定时器注解开关 --> <context:annotation-config /> <task:annotation-driven />
@Component @Lazy(false) public class ScheduledNotifySMS { // 每天11点14分执行 @Scheduled(cron = "0 14 11 * * ?") public void TaskJob() {} }
<!-- Spring定时器注解开关 --> <context:annotation-config /> <task:annotation-driven />
@Component @Lazy(false) public class ScheduledNotifySMS { // 每天11点14分执行 @Scheduled(cron = "0 14 11 * * ?") public void TaskJob() {} }