在 @Scheduled 注解中添加 @Async 注解
时间: 2023-08-18 18:11:33 浏览: 130
springboot中@Async异步调用注解的使用
在 @Scheduled 注解中添加 @Async 注解可以实现定时任务的异步执行。@Async 注解可以用于标记一个方法为异步方法,表示该方法将在一个独立的线程中执行,而不会阻塞当前线程。
下面是一个示例:
```java
import org.springframework.scheduling.annotation.Async;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
public class MyScheduledTask {
@Async
@Scheduled(fixedRate = 5000) // 每隔5秒执行一次
public void myAsyncTask() {
// 异步执行的任务逻辑
System.out.println("异步任务开始执行...");
// ...
System.out.println("异步任务执行完成!");
}
}
```
在上述示例中,我们在定时任务方法上同时添加了 @Async 和 @Scheduled 注解。@Scheduled 注解用于配置定时任务的执行频率,这里使用 fixedRate 表示每隔5秒执行一次。@Async 注解表示该方法将异步执行。
需要注意的是,为了使 @Async 注解生效,还需要在 Spring Boot 的主类上添加 @EnableAsync 注解。
```java
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableAsync;
@SpringBootApplication
@EnableAsync
public class MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
```
这样配置之后,定时任务将在独立的线程中异步执行,不会阻塞当前线程。
阅读全文