Spring Boot 使用@Scheduled创建定时任务
package com.cc.springboot.schedu;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class ScheduledTasks {
@Scheduled(fixedRate=1000)
public void reportCurrentTime() {
System.out.println("执行...##ScheduledTasks");
}
}
在Spring Boot的主类中加入@EnableScheduling注解,启用定时任务的配置
启动程序: