• CompletableFuture 异步编排


    目录


    CompletableFuture 的详解

     

    🍫 它就是创建一个异步任务,然后在干什么,可以使用多任务组合

     
    • 创建任务的方法
    1. static CompletableFuture runAsync(Runnable runnable)
    2. public static CompletableFuture runAsync(Runnable runnable, Executor executor)
    3. public static CompletableFuture supplyAsync(Supplier supplier)
    4. public static CompletableFuture supplyAsync(Supplier supplier, Executor executor)
    • 然后继续上一段的任务(里面包含了串行,AND,OR)

    🚩 串行:

    1. public CompletableFuture thenApply(Function fn)
    2. public CompletableFuture thenApplyAsync(Function fn)
    3. public CompletableFuture thenApplyAsync(Function fn, Executor executor)
    4. public CompletionStage thenAccept(Consumer action);
    5. public CompletionStage thenAcceptAsync(Consumer action);
    6. public CompletionStage thenAcceptAsync(Consumer action,Executor executor);
    7. public CompletionStage thenRun(Runnable action);
    8. public CompletionStage thenRunAsync(Runnable action);
    9. public CompletionStage thenRunAsync(Runnable action,Executor executor);
    1. Function
    2. T:上一个任务返回结果的类型
    3. U:当前任务的返回值类型
     

    参数解析:

    • thenApply 方法:当一个线程依赖另一个线程时,获取上一个任务返回的结果,并返回当前任务的返回值。(接收上一阶段任务结果,返回结果)
    • thenAccept方法:消费处理结果。接收任务的处理结果,并消费处理,无返回结果。 (接收上一阶段任务结果,不返回结果)
    • thenRun方法:不接收上一阶段任务结果,并且无返回值 带有Async默认是异步执行的。这里所谓的异步指的是不在当前线程内执行。

    🚡 AND

    1. public CompletionStage thenCombineAsync (CompletionStage other,BiFunction fn,Executor executor);
    2. - 上一阶段任务与other任务均执行结束,接收两个任务的结果,并可获取返回值
    3. public CompletionStage thenComposeAsync(Function> fn,
    4. Executor executor);
    5. - 使用上一阶段任务的结果,返回一个新的CompletableFuture实例
     

    更多的参数详解: 博客链接

     
    • 多任务组合
     
    1. public static CompletableFuture allOf(CompletableFuture... cfs);
    2. public static CompletableFuture anyOf(CompletableFuture... cfs);

      代码测试

       
      配置类的引入

      yml

      1. thread:
      2. pool:
      3. corePoolSize: 4
      4. maxPoolSize: 8
      5. workQueue: 25
      6. keepAliveTime: 30
       

      config

      1. import org.springframework.boot.context.properties.ConfigurationProperties;
      2. import org.springframework.context.annotation.Bean;
      3. import org.springframework.context.annotation.Configuration;
      4. import org.springframework.scheduling.annotation.AsyncConfigurer;
      5. import org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor;
      6. import java.util.concurrent.Executor;
      7. import java.util.concurrent.ThreadPoolExecutor;
      8. @Configuration
      9. @ConfigurationProperties(prefix = "thread.pool")
      10. public class AsyncConfig{
      11. //核心线程数量大小
      12. private int corePoolSize = 4;
      13. //线程池最大容纳线程数
      14. private int maxPoolSize =8;
      15. //阻塞队列
      16. private int workQueue = 25;
      17. //线程空闲后的存活时长
      18. private int keepAliveTime = 30;
      19. @Bean("asyncTaskExecutor")
      20. public Executor getAsyncExecutor() {
      21. ThreadPoolTaskExecutor threadPoolTaskExecutor = new ThreadPoolTaskExecutor();
      22. //核心线程数
      23. threadPoolTaskExecutor.setCorePoolSize(corePoolSize);
      24. //最大线程数
      25. threadPoolTaskExecutor.setMaxPoolSize(maxPoolSize);
      26. //等待队列
      27. threadPoolTaskExecutor.setQueueCapacity(workQueue);
      28. //线程前缀
      29. threadPoolTaskExecutor.setThreadNamePrefix("taskExecutor-");
      30. //线程池维护线程所允许的空闲时间,单位为秒
      31. threadPoolTaskExecutor.setKeepAliveSeconds(keepAliveTime);
      32. // 线程池对拒绝任务(无线程可用)的处理策略
      33. threadPoolTaskExecutor.setRejectedExecutionHandler(new ThreadPoolExecutor.CallerRunsPolicy());
      34. threadPoolTaskExecutor.initialize();
      35. return threadPoolTaskExecutor;
      36. }
      37. }

      🍫 参数详解: 建议看看下面的线程池对拒绝任务(无线程可用)的处理策略

      1. 1、corePoolSize:核心线程数
      2. * 核心线程会一直存活,及时没有任务需要执行
      3. * 当线程数小于核心线程数时,即使有线程空闲,线程池也会优先创建新线程处理
      4. * 设置allowCoreThreadTimeout=true(默认false)时,核心线程会超时关闭
      5. 2、queueCapacity:任务队列容量(阻塞队列)
      6. * 当核心线程数达到最大时,新任务会放在队列中排队等待执行
      7. 3、maxPoolSize:最大线程数
      8. * 当线程数>=corePoolSize,且任务队列已满时。线程池会创建新线程来处理任务
      9. * 当线程数=maxPoolSize,且任务队列已满时,线程池会拒绝处理任务而抛出异常
      10. 4、 keepAliveTime:线程空闲时间
      11. * 当线程空闲时间达到keepAliveTime时,线程会退出,直到线程数量=corePoolSize
      12. * 如果allowCoreThreadTimeout=true,则会直到线程数量=0
      13. 5、allowCoreThreadTimeout:允许核心线程超时
      14. 6、rejectedExecutionHandler:任务拒绝处理器
      15. * 两种情况会拒绝处理任务:
      16. - 当线程数已经达到maxPoolSize,切队列已满,会拒绝新任务
      17. - 当线程池被调用shutdown()后,会等待线程池里的任务执行完毕,再shutdown。如果在调用shutdown()和线程池真正shutdown之间提交任务,会拒绝新任务
      18. * 线程池会调用rejectedExecutionHandler来处理这个任务。如果没有设置默认是AbortPolicy,会抛出异常
      19. * ThreadPoolExecutor类有几个内部实现类来处理这类情况:
      20. - AbortPolicy 丢弃任务,抛运行时异常(默认)
      21. - CallerRunsPolicy 执行任务
      22. - DiscardPolicy 忽视,什么都不会发生
      23. - DiscardOldestPolicy 从队列中踢出最先进入队列(最后一个执行)的任务
      24. * 实现RejectedExecutionHandler接口,可自定义处理器


       

      Demo1
        

      image-20221115170031342

       
      1. CompletableFuture task1 = CompletableFuture.supplyAsync(() -> {
      2. System.out.println("洗水壶");
      3. try {
      4. Thread.sleep(1000);
      5. } catch (InterruptedException ex) {
      6. ex.printStackTrace();
      7. }
      8. return "水壶";
      9. }).thenApply(e->{
      10. System.out.println("烧水");
      11. try {
      12. Thread.sleep(5000);
      13. } catch (InterruptedException ex) {
      14. ex.printStackTrace();
      15. }
      16. return "热水";
      17. });
      18. //洗水壶->洗水杯->拿茶叶
      19. CompletableFuture task2 = CompletableFuture.supplyAsync(() -> {
      20. System.out.println("洗茶壶");
      21. try {
      22. Thread.sleep(1000);
      23. } catch (InterruptedException ex) {
      24. ex.printStackTrace();
      25. }
      26. return "茶壶";
      27. }).thenApply(e->{
      28. try {
      29. Thread.sleep(2000);
      30. } catch (InterruptedException ex) {
      31. ex.printStackTrace();
      32. }
      33. System.out.println("洗水杯");
      34. return "水杯";
      35. }).thenApply(e->{
      36. System.out.println("拿茶叶");
      37. return "茶叶";
      38. });
      39. //泡茶
      40. CompletableFuture task3 = task1.thenCombine(task2, (a, b) -> {
      41. System.out.println("泡茶");
      42. return "茶";
      43. });
      44. String tea = task3.join();
      45. System.out.println(tea);
       

      🍫 参数解析:

      更多的参数详解: 博客链接

      Demo2
       
      • 这个测试我就没有写了,自己可以看看

      问题:当查询接口较复杂时候,数据的获取都需要远程调用,必然需要花费更多的时间。

      假如查询文章详情页面,需要如下标注的时间才能完成:

       


      // 1. 查询文章详情 0.5s

      // 2. 查询文章博主个人信息 0.5s

      // 3. 查询文章评论 1s

      // 4. 查询博主相关文章分类 1s

      // 5. 相关推荐文章 1s

      // ......
      上面的描述只是举个例子不要在意这里的查询描述,看实际情况使用,有些相关的查询我们可以拆分接口实现,上面的描述只是为了举例子。
       

      1. @Service
      2. public class ArticleService {
      3. @Autowired
      4. private ArticleClient articleClient;
      5. @Autowired
      6. private UserClient userClient;
      7. @Autowired
      8. private ThreadPoolExecutor threadPoolExecutor;
      9. public ItemVo load(Long id) {
      10. // 1. 查询文章详情 0.5s
      11. // 下面的查询需要用到文章对应的发布用户,所以这里需要使用CompletableFuture.supplyAsync
      12. CompletableFuture articleCompletableFuture = CompletableFuture.supplyAsync(() -> {
      13. ResponseVo skuEntityResponseVo = this.articleClient.getArticleById(id);
      14. ArticleEntity articleEntity = skuEntityResponseVo.getData();
      15. if (articleEntity == null) {
      16. return null;
      17. }
      18. itemVo.setId(id);
      19. itemVo.setTitle(articleEntity.getTitle());
      20. itemVo.setDefaltImage(articleEntity.getDefaultImage());
      21. return articleEntity;
      22. }, threadPoolExecutor);
      23. // 2. 查询文章博主个人信息 0.5s
      24. // 这里查询需要依赖文章关联的用户id,所以需要使用articleCompletableFuture.thenAcceptAsync()
      25. CompletableFuture userCompletableFuture = articleCompletableFuture.thenAcceptAsync(articleEntity -> {
      26. ResponseVo categoryResponseVo = this.userClient.queryUserInfoById(articleEntity.getUserId());
      27. UserEntity userEntity = categoryResponseVo.getData();
      28. itemVo.setUserInfo(userEntity);
      29. }, threadPoolExecutor);
      30. // 3. 查询博主相关文章分类 1s
      31. // 这里查询需要依赖文章关联的用户id,所以需要使用articleCompletableFuture.thenAcceptAsync()
      32. CompletableFuture userOtherArticleCompletableFuture = articleCompletableFuture.thenAcceptAsync(articleEntity -> {
      33. ResponseVo> categoryResponseVo = this.articleClient.queryUserAuserOtherArticleById(articleEntity.getUserId());
      34. UserAuserOtherArticleEntity userAuserOtherArticleEntity = categoryResponseVo.getData();
      35. itemVo.setUserAuserOtherArticleList(userAuserOtherArticleEntity);
      36. }, threadPoolExecutor);
      37. // 4. 查询文章评论 1s
      38. // 不需要依赖其他请求返回值,可以使用新的异步对象 CompletableFuture.runAsync()
      39. CompletableFuture commentsCompletableFuture = CompletableFuture.runAsync(() -> {
      40. ResponseVo> userArticleCategoryVo = this.userClient.queryCommentsByArticleId(id);
      41. UserArticleCategoryEntity userArticleCategoryEntity = userArticleCategoryVo.getData();
      42. itemVo.setUserArticleCategoryList(userArticleCategoryEntity);
      43. }, threadPoolExecutor);
      44. // 5. 相关推荐文章 1s
      45. // 不需要依赖其他请求返回值,可以使用新的异步对象 CompletableFuture.runAsync()
      46. CompletableFuture relatedArticlesCompletableFuture = CompletableFuture.runAsync(() -> {
      47. ResponseVo> userArticleCategoryVo = this.articleClient.queryRelatedArticles(id);
      48. UserArticleCategoryEntity userArticleCategoryEntity = userArticleCategoryVo.getData();
      49. itemVo.setUserArticleCategoryList(userArticleCategoryEntity);
      50. }, threadPoolExecutor);
      51. }
      52. // 多任务执行组合 CompletableFuture.allOf()
      53. CompletableFuture.allOf(articleCompletableFuture, userCompletableFuture, userOtherArticleCompletableFuture,
      54. commentsCompletableFuture, relatedArticlesCompletableFuture).join();
      55. return itemVo;
      56. }


       

      CompletableFuture的async后缀函数与不带async的函数的区别

       

      参考链接: 博客链接

       

      🍫 结论:

      1. 不带async的函数的动作比较复杂
      2. f的whenComplete的内容由哪个线程来执行,取决于哪个线程X执行了f.complete()。但是当X线程执行了f.complete()的时候,whenComplete还没有被执行到的时候(就是事件还没有注册的时候),那么X线程就不会去同步执行whenComplete的回调了。这个时候哪个线程执行到了whenComplete的事件注册的时候,就由哪个线程自己来同步执行whenComplete的事件内容。
      3. 而whenCompleteAsync的场合,就简单很多。一句话就是线程池里面拿一个空的线程或者新启一个线程来执行回调。和执行f.complete的线程以及执行whenCompleteAsync的线程无关。



       

      ThreadPoolTaskExecutor 和 ThreadPoolExecutor 的区别

       

      参考链接: 博客链接

      🍫 结论:

      其实最主要的原因很直观:ThreadPoolExecutor是一个不受Spring管理生命周期、参数装配的Java类,而有了ThreadPoolTaskExecutor的封装,线程池才有Spring“内味”。

       

      Spring 线程池的使用


       

      业务使用多线程的原因

       
      • 目的是面对高并发的时候,提高运行速度

      场景一:

      一个业务逻辑有很多次的循环,每次循环之间没有影响,比如验证1万条url路径是否存在,正常情况要循环1万次,逐个去验证每一条URL,这样效率会很低,假设验证一条需要1分钟,总共就需要1万分钟,有点恐怖。这时可以用多线程,将1万条URL分成50等份,开50个线程,没个线程只需验证200条,这样所有的线程执行完是远小于1万分钟的。


       

      场景二:

      需要知道一个任务的执行进度,比如我们常看到的进度条,实现方式可以是在任务中加入一个整型属性变量(这样不同方法可以共享),任务执行一定程度就给变量值加1,另外开一个线程按时间间隔不断去访问这个变量,并反馈给用户。总之使用多线程就是为了充分利用cpu的资源,提高程序执行效率,当你发现一个业务逻辑执行效率特别低,耗时特别长,就可以考虑使用多线程。

      问题:不过CPU执行哪个线程的时间和顺序是不确定的,即使设置了线程的优先级,因此使用多线程的风险也是比较大的,会出现很多预料不到的问题,一定要多熟悉概念,多构造不同的场景去测试才能够掌握!

      项目中可以通过:

      1. @Order()
      2. 设置运行的优先级,数字越小,级别越高


       

      FutureTask介绍

       

      🍫 参考: 博客链接

      线程池为什么要使用阻塞队列

       

      阻塞队列可以保证任务队列中没有任务时阻塞获取任务的线程,使得线程进入wait 状态,释放 cpu 资源,当队列中有任务时才唤醒对应线程从队列中取出消息进行执行。

      使得在线程不至于一直占用cpu资源。(线程执行完任务后通过循环再次从任务队列中取出任务进行执行,代码片段如:while (task != null || (task = getTask()) != null) {})。

      不用阻塞队列也是可以的,不过实现起来比较麻烦而已,有好用的为啥不用呢
       

      Spring 常用的线程池的使用

       

      序列

      Spring 通过任务执行器(TaskExecutor)来实现多线程和并发编程,使用 ThreadPoolTaskExecutor 实现一个基于线程池的TaskExecutor,
      还得需要使用 @EnableAsync 开启异步,并通过在需要的异步方法那里使用注解@Async声明是一个异步任务

      Spring 已经实现的异常线程池:

      •  
      • - SimpleAsyncTaskExecutor:不是真的线程池,这个类不重用线程,每次调用都会创建一个新的线程。
      • - SyncTaskExecutor:这个类没有实现异步调用,只是一个同步操作。只适用于不需要多线程的地方
      • - ConcurrentTaskExecutor:Executor的适配类,不推荐使用。如果ThreadPoolTaskExecutor不满足要求时,才用考虑使用这个类
      • - SimpleThreadPoolTaskExecutor:是Quartz的 SimpleThreadPool 的类。线程池同时被quartz和非quartz使用,才需要使用此类
      • - ThreadPoolTaskExecutor :最常使用,推荐。 其实质是对 java.util.concurrent.ThreadPoolExecutor 的包装
         

      🍫 扩展:相信大家在 Java 里面也学过 JUC ,里面有 Java 里面的线程池,可以直接去看看 ThreadPoolExecutor

      至于为什么有线程池,Spring 为什么还有在自己搞一个,可以自己去探索,Spring 的底层还是 ThreadPoolExecutor ,只是它的生命周期不受它控制。


       

      常规使用

       
      1. // 线程池(config里面的Bean)
      2. @Autowired
      3. private Executor taskExecutor;
      4. Callable scy =()-> scyTeacherMapper.selectOne(new LambdaQueryWrapper()
      5. .eq(ScyTeacher::getUsername,test));
      6. FutureTask commentCallable = new FutureTask<>(scy);
      7. Future submit = executor.submit(commentCallable);
      8. Map map = submit.get();

      异步使用

       

      🚩 记得开启异步(配置类添加)

      @EnableAsync //开启异步执行
      
       
      1. package com.melodyjerry.thread;
      2. import org.springframework.scheduling.annotation.Async;
      3. import org.springframework.stereotype.Service;
      4. /**
      5. * @classname AsyncTaskService
      6. * @description 异步任务的执行类
      7. */
      8. @Service
      9. public class AsyncTaskService {
      10. @Async //异步方法
      11. public void executeAsyncTask(Integer i) {
      12. System.out.javaprintln("执行异步任务: "+i);
      13. }
      14. @Async //异步方法
      15. public void executeAsyncTaskPlus(Integer i) {
      16. System.out.println("执行异步任务+1: " + (i+1));
      17. }
      18. }

    3. 相关阅读:
      PE文件硬编码代码注入
      阅读笔记 | REFORMER: THE EFFICIENT TRANSFORMER
      入门篇-其之十-流程控制之循环结构
      基于php湘西旅游网站管理系统获取(php毕业设计)
      Generator—导出种子数据
      AttributeError: ‘builtin_function_or_method‘ object has no attribute ‘shuffle‘
      IP路由的原理
      Thread 类的基本用法——一网打尽
      基于Docker的安装和配置Canal
      React组件生命周期
    4. 原文地址:https://blog.csdn.net/qq_42428269/article/details/133532704