Spring 中的定时任务

<!-- Spring定时器注解开关 -->
<context:annotation-config />

<task:annotation-driven />
@Component
@Lazy(false)
public class ScheduledNotifySMS {
    // 每天11点14分执行
    @Scheduled(cron = "0 14 11 * * ?")
    public void TaskJob() {}
}