Spring Boot实现定时任务
在Spring Boot中实现定时任务,你可以使用@Scheduled
注解。以下是一个简单的例子:
- 首先,在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()));
}
}
在这个例子中,reportCurrentTime
方法将会每5秒钟执行一次,并打印当前时间。
@Scheduled
注解的参数fixedRate
表示任务执行的间隔时间,还可以使用fixedDelay
、cron
等属性来设置不同的执行策略。
评论已关闭