Spring Boot中的@Scheduled注解:定时任务的原理与实现
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
import java.time.format.DateTimeFormatter;
import java.time.LocalDateTime;
@Component
public class ScheduledTasks {
private static final DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("HH:mm:ss");
// 每5秒执行一次
@Scheduled(fixedRate = 5000)
public void reportCurrentTime() {
System.out.println("现在时间是:" + dateTimeFormatter.format(LocalDateTime.now()));
}
}
这段代码使用了@Scheduled
注解来创建一个简单的Spring Boot定时任务。fixedRate = 5000
表示任务将以固定频率5秒执行一次。该任务将打印当前的时间戳到控制台。这个例子展示了如何使用@Scheduled
来创建一个简单的定时任务,并且如何使用DateTimeFormatter
来格式化日期时间输出。
评论已关闭