在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
注解的參數進行配置,有多種配置方式可選擇。