@Async 异步背景
新增的数据需要分发给下游业务系统,由于下游业务系统状态未知,所以需要异步发送数据给下游业务系统。
系统生效按钮--->controller新增-->异步调用servcie--->数据集成
在springboot框架中实现步骤
首先在启动类上加上@EnableAsync注解开启项目的异步调用功能,其次需异步调用的方法上加上注解 @Async 即可实现方法的异步调用,再次在contorller使用的异步方法添加@Lazy
第一步:在启动类上加上 @EnableAsync 注解
第二步添加现场池
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.task.TaskExecutor;
import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
@Configuration
public class TaskExecutorBean {
public TaskExecutor getTaskExecutor() {
return new ThreadPoolTaskExecutor();
}
}
第三步:servcie方法添加异步注解@Async
第四步使用:在contorller中使用异步方法
文章来源:https://www.toymoban.com/news/detail-596107.html
文章来源地址https://www.toymoban.com/news/detail-596107.html
到了这里,关于springboot @Async 异步调用接口处理数据的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!