package com.wisely.highlight_spring4.ch3.taskscheduler;
@Service
public class ScheduledTaskService {
private static final SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
@Scheduled(fixedRate = 5000) //1 声明该方法是计划任务,fixedRate属性每隔固定时间执行
public void reportCurrentTime() {
System.out.println("每隔五秒执行一次 " + dateFormat.format(new Date()));
}
@Scheduled(cron = "0 28 11 ? * *") //2 按照指定时间执行,每天11点28分执行
public void fixTimeExecution(){
System.out.println("在指定时间 " + dateFormat.format(new Date())+"执行");
}
}
(2)配置类。
package com.wisely.highlight_spring4.ch3.taskscheduler;
@Configuration
@ComponentScan("com.wisely.highlight_spring4.ch3.taskscheduler")
@EnableScheduling //1 开启对计划任务的支持。
public class TaskSchedulerConfig {
}
(3)运行。
package com.wisely.highlight_spring4.ch3.taskscheduler;
public class Main {
public static void main(String[] args) {
AnnotationConfigApplicationContext context =
new AnnotationConfigApplicationContext(TaskSchedulerConfig.class);
}
}