springboot整合springTask
时间: 2023-05-12 09:04:52 浏览: 106
springboot整合
Spring Boot 整合 Spring Task 的步骤如下:
1. 在 pom.xml 文件中添加 Spring Task 的依赖:
```
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-quartz</artifactId>
</dependency>
```
2. 创建一个定时任务类,使用 @Component 注解将其注入到 Spring 容器中:
```
@Component
public class MyTask {
@Scheduled(cron = "0 0/1 * * * ?")
public void run() {
// 定时任务的逻辑代码
}
}
```
3. 在 Spring Boot 应用启动类上添加 @EnableScheduling 注解开启定时任务:
```
@SpringBootApplication
@EnableScheduling
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
```
以上就是 Spring Boot 整合 Spring Task 的基本步骤。
阅读全文