Spring Boot 使用@Scheduled创建定时任务

时间:2022-06-29 07:58:57

Spring Boot 使用@Scheduled创建定时任务

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注解,启用定时任务的配置
Spring Boot 使用@Scheduled创建定时任务

启动程序:

Spring Boot 使用@Scheduled创建定时任务