SpringBoot异步调用方法并接收返回值

作者:myCat、 时间:2023-08-16 22:33:49 

项目中肯定会遇到异步调用其他方法的场景,比如有个计算过程,需要计算很多个指标的值,但是每个指标计算的效率快慢不同,如果采用同步执行的方式,运行这一个过程的时间是计算所有指标的时间之和。比如:

方法A:计算指标x,指标y,指标z的值,其中计算指标x需要1s,计算指标y需要2s,指标z需要3s。最终执行完方法A就是5s。

现在用异步的方式优化一下

方法A异步调用方法B,方法C,方法D,方法B,方法C,方法D分别计算指标x,指标y,指标z的值,那么最终执行完方法A的时间则是3s。

步骤1:配置线程池,添加@Configuration和@EnableAsync注解


@Configuration
@EnableAsync
public class ExecutorConfig {
/**
  * 线程池
  *
  * @return
  */
 @Bean(name = "asyncExecutor")
 public Executor asyncExecutor() {
   ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
   executor.setCorePoolSize(10);
   executor.setMaxPoolSize(15);
   executor.setQueueCapacity(25);
   executor.setKeepAliveSeconds(200);
   executor.setThreadNamePrefix("async-");
   executor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
   // 等待所有任务都完成再继续销毁其他的Bean
   executor.setWaitForTasksToCompleteOnShutdown(true);
   // 线程池中任务的等待时间,如果超过这个时候还没有销毁就强制销毁,以确保应用最后能够被关闭,而不是阻塞住
   executor.setAwaitTerminationSeconds(60);
   executor.initialize();
   return executor;
 }
}

步骤2:定义方法A,方法B,方法C,方法D


@Service
public class AsyncService {
@Async("asyncExecutor")
 public Future<Integer> methodB(){
   try{
     Thread.sleep(1000);
   } catch (Exception e) {
     e.printStackTrace();
   }
   return new AsyncResult<>(1);
 }
@Async("asyncExecutor")
 public Future<Integer> methodC(){
   try{
     Thread.sleep(2000);
   } catch (Exception e) {
     e.printStackTrace();
   }
   return new AsyncResult<>(2);
 }
@Async("asyncExecutor")
 public Future<Integer> methodD(){
   try{
     Thread.sleep(3000);
   } catch (Exception e) {
     e.printStackTrace();
   }
   return new AsyncResult<>(3);
 }
}
@GetMapping("test")
 public Integer methodA() throws Exception{
   long start = System.currentTimeMillis();
   Future<Integer> future1 = asyncService.methodB();
   Future<Integer> future2 = asyncService.methodC();
   Future<Integer> future3 = asyncService.methodD();
   Integer x = future1.get();
   Integer y = future2.get();
   Integer z = future3.get();
   long end = System.currentTimeMillis();
   System.out.println("耗时:" + (end - start));
   return x + y +z;
 }
}

结果:

SpringBoot异步调用方法并接收返回值

SpringBoot异步调用方法并接收返回值

来源:https://blog.csdn.net/WYA1993/article/details/88552274

标签:SpringBoot,异步调用,返回值
0
投稿

猜你喜欢

  • Android Studio 3.0中mipmap-anydpi-v26是什么东东

    2023-10-11 01:17:44
  • Java 设计模式中的命令模式详情

    2023-11-15 23:25:33
  • Android利用GridView实现单选效果

    2022-08-12 03:31:50
  • c++中vector<int>和vector<int*>的用法及区别

    2023-03-28 02:29:37
  • Java中string和int的互相转换问题

    2023-07-26 14:27:34
  • SpringBoot使用swagger生成api接口文档的方法详解

    2021-10-22 18:11:48
  • Java异常简介和架构_动力节点Java学院整理

    2022-09-03 07:07:52
  • 深入讲解Java Maven配置

    2022-07-01 05:09:21
  • C#使用iTextSharp操作PDF

    2023-07-29 02:03:11
  • SpringBoot整合Groovy脚本实现动态编程详解

    2023-04-02 03:24:16
  • Spring Boot插件spring tool suite安装及使用详解

    2021-12-15 03:29:23
  • Android WebView实现全屏播放视频

    2023-04-12 17:12:39
  • IDEA中项目集成git提交代码的详细步骤

    2021-09-08 04:33:39
  • springboot自定义Starter过程解析

    2023-07-24 22:24:55
  • C#枚举类型与位域枚举Enum

    2023-03-02 06:52:27
  • JavaBean和Map转换封装类的方法

    2023-04-18 06:50:52
  • C#实现计算年龄的简单方法汇总

    2022-12-26 01:12:41
  • SprintBoot深入浅出讲解场景启动器Starter

    2023-11-24 20:58:58
  • C#多线程学习之(五)使用定时器进行多线程的自动管理

    2022-03-05 13:55:44
  • Android实现计时与倒计时的方法汇总

    2023-11-09 19:29:28
  • asp之家 软件编程 m.aspxhome.com