Spring Boot实现定时任务新解,你是否能get到?
在Spring Boot中实现定时任务,可以使用@Scheduled
注解。以下是一个简单的例子,展示如何使用该注解来创建一个每5秒执行一次的定时任务。
- 首先,在Spring Boot主类或配置类上添加
@EnableScheduling
注解来启用定时任务。
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
public class SchedulerApplication {
public static void main(String[] args) {
SpringApplication.run(SchedulerApplication.class, args);
}
}
- 创建一个定时任务的类,并使用
@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");
@Scheduled(fixedRate = 5000)
public void reportCurrentTime() {
System.out.println("现在时间是:" + dateTimeFormatter.format(LocalDateTime.now()));
}
}
在上述代码中,@Scheduled(fixedRate = 5000)
表示任务将以固定频率5秒(5000毫秒)执行一次。
以上就是一个使用Spring Boot实现定时任务的简单例子。
评论已关闭