在Spring Boot中使用定时任务,可以按照以下步骤进行操作:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
@Scheduled
注解标记该方法为定时任务:import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class MyTask {
@Scheduled(fixedRate = 5000) // 每隔5秒执行一次
public void myTaskMethod() {
// 定时任务要执行的逻辑
System.out.println("定时任务执行了!");
}
}
@EnableScheduling
注解开启定时任务的支持:import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
@SpringBootApplication
@EnableScheduling
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
这样就可以在Spring Boot中使用定时任务了。定时任务的执行时间间隔可以通过@Scheduled
注解的参数进行配置,有多种配置方式可选择。