消息![线程池]Springboot如何使用线程池

作者: 来源: 腾讯云 2023-03-17 12:02:31

 

本文带你快速了解@Async注解的用法,包括异步方法无返回值、有返回值,最后总结了@Async注解失效的几个坑。

在 SpringBoot 应用中,经常会遇到在一个接口中,同时做事情1,事情2,事情3,如果同步执行的话,则本次接口时间取决于事情1 2 3执行时间之和;如果三件事同时执行,则本次接口时间取决于事情1 2 3执行时间最长的那个,合理使用多线程,可以大大缩短接口时间。那么在 SpringBoot 应用中如何优雅的使用多线程呢?


【资料图】

Don"t bb, show me code.

快速使用

SpringBoot应用中需要添加@EnableAsync注解,来开启异步调用,一般还会配置一个线程池,异步的方法交给特定的线程池完成,如下:

@Configuration@EnableAsyncpublic class AsyncConfiguration {    @Bean("doSomethingExecutor")    public Executor doSomethingExecutor() {        ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();        // 核心线程数:线程池创建时候初始化的线程数        executor.setCorePoolSize(10);        // 最大线程数:线程池最大的线程数,只有在缓冲队列满了之后才会申请超过核心线程数的线程        executor.setMaxPoolSize(20);        // 缓冲队列:用来缓冲执行任务的队列        executor.setQueueCapacity(500);        // 允许线程的空闲时间60秒:当超过了核心线程之外的线程在空闲时间到达之后会被销毁        executor.setKeepAliveSeconds(60);        // 线程池名的前缀:设置好了之后可以方便我们定位处理任务所在的线程池        executor.setThreadNamePrefix("do-something-");        // 缓冲队列满了之后的拒绝策略:由调用线程处理(一般是主线程)        executor.setRejectedExecutionHandler(new ThreadPoolExecutor.DiscardPolicy());        executor.initialize();        return executor;    }}

使用的方式非常简单,在需要异步的方法上加@Async注解

@RestControllerpublic class AsyncController {    @Autowired    private AsyncService asyncService;    @GetMapping("/open/something")    public String something() {        int count = 10;        for (int i = 0; i < count; i++) {            asyncService.doSomething("index = " + i);        }        lon        return "success";    }}@Slf4j@Servicepublic class AsyncService {    // 指定使用beanname为doSomethingExecutor的线程池    @Async("doSomethingExecutor")    public String doSomething(String message) {        log.info("do something, message={}", message);        try {            Thread.sleep(1000);        } catch (InterruptedException e) {            log.error("do something error: ", e);        }        return message;    }}

访问:127.0.0.1:8080/open/something,日志如下

2020-04-19 23:42:42.486  INFO 21168 --- [io-8200-exec-17] x.g.b.system.controller.AsyncController  : do something end, time 8 milliseconds2020-04-19 23:42:42.488  INFO 21168 --- [ do-something-1] x.gits.boot.system.service.AsyncService  : do something, message=index = 02020-04-19 23:42:42.488  INFO 21168 --- [ do-something-5] x.gits.boot.system.service.AsyncService  : do something, message=index = 42020-04-19 23:42:42.488  INFO 21168 --- [ do-something-4] x.gits.boot.system.service.AsyncService  : do something, message=index = 32020-04-19 23:42:42.488  INFO 21168 --- [ do-something-6] x.gits.boot.system.service.AsyncService  : do something, message=index = 52020-04-19 23:42:42.488  INFO 21168 --- [ do-something-9] x.gits.boot.system.service.AsyncService  : do something, message=index = 82020-04-19 23:42:42.488  INFO 21168 --- [ do-something-8] x.gits.boot.system.service.AsyncService  : do something, message=index = 72020-04-19 23:42:42.488  INFO 21168 --- [do-something-10] x.gits.boot.system.service.AsyncService  : do something, message=index = 92020-04-19 23:42:42.488  INFO 21168 --- [ do-something-7] x.gits.boot.system.service.AsyncService  : do something, message=index = 62020-04-19 23:42:42.488  INFO 21168 --- [ do-something-2] x.gits.boot.system.service.AsyncService  : do something, message=index = 12020-04-19 23:42:42.488  INFO 21168 --- [ do-something-3] x.gits.boot.system.service.AsyncService  : do something, message=index = 2

由此可见已经达到异步执行的效果了,并且使用到了咱们配置的线程池。

获取异步方法返回值

当异步方法有返回值时,如何获取异步方法执行的返回结果呢?这时需要异步调用的方法带有返回值CompletableFuture。

CompletableFuture是对Feature的增强,Feature只能处理简单的异步任务,而CompletableFuture可以将多个异步任务进行复杂的组合。如下:

@RestControllerpublic class AsyncController {    @Autowired    private AsyncService asyncService;    @SneakyThrows    @ApiOperation("异步 有返回值")    @GetMapping("/open/somethings")    public String somethings() {        CompletableFuture createOrder = asyncService.doSomething1("create order");        CompletableFuture reduceAccount = asyncService.doSomething2("reduce account");        CompletableFuture saveLog = asyncService.doSomething3("save log");        // 等待所有任务都执行完        CompletableFuture.allOf(createOrder, reduceAccount, saveLog).join();        // 获取每个任务的返回结果        String result = createOrder.get() + reduceAccount.get() + saveLog.get();        return result;    }}@Slf4j@Servicepublic class AsyncService {    @Async("doSomethingExecutor")    public CompletableFuture doSomething1(String message) throws InterruptedException {        log.info("do something1: {}", message);        Thread.sleep(1000);        return CompletableFuture.completedFuture("do something1: " + message);    }    @Async("doSomethingExecutor")    public CompletableFuture doSomething2(String message) throws InterruptedException {        log.info("do something2: {}", message);        Thread.sleep(1000);        return CompletableFuture.completedFuture("; do something2: " + message);    }    @Async("doSomethingExecutor")    public CompletableFuture doSomething3(String message) throws InterruptedException {        log.info("do something3: {}", message);        Thread.sleep(1000);        return CompletableFuture.completedFuture("; do something3: " + message);    }}

访问接口

C:\Users\Administrator>curl -X GET "http://localhost:8200/open/somethings" -H "accept: */*"do something1: create order; do something2: reduce account; do something3: save log

控制台上关键日志如下:

2020-04-20 00:27:42.238  INFO 5672 --- [ do-something-3] x.gits.boot.system.service.AsyncService  : do something3: save log2020-04-20 00:27:42.238  INFO 5672 --- [ do-something-2] x.gits.boot.system.service.AsyncService  : do something2: reduce account2020-04-20 00:27:42.238  INFO 5672 --- [ do-something-1] x.gits.boot.system.service.AsyncService  : do something1: create order

注意事项

@Async注解会在以下几个场景失效,也就是说明明使用了@Async注解,但就没有走多线程。

异步方法使用static关键词修饰;异步类不是一个Spring容器的bean(一般使用注解@Component@Service,并且能被Spring扫描到);SpringBoot应用中没有添加@EnableAsync注解;在同一个类中,一个方法调用另外一个有@Async注解的方法,注解不会生效。原因是@Async注解的方法,是在代理类中执行的。

通过上边几个示例,@Async实际还是通过Future或CompletableFuture来异步执行的,Spring又封装了一下,让我们使用的更方便。

 

相关文章
最近更新
  • 消息![线程池]Springboot如何使用线程池

    消息![线程池]Springboot如何使用线程池

    2023-03-17

  • 全球速递!黄山仙女弹琴的描写_黄山仙女弹琴

    全球速递!黄山仙女弹琴的描写_黄山仙女弹琴

    2023-03-17

  • 环球视点!湖南省石峰区发布暴雨黄色预警

    环球视点!湖南省石峰区发布暴雨黄色预警

    2023-03-17

  • 天天观天下!会飞的小精灵结局_会飞的小精灵百度云

    天天观天下!会飞的小精灵结局_会飞的小精灵百度云

    2023-03-17

  • 国货牛!千元级大牌“爆米花”科技跑鞋,98元就能体验到

    国货牛!千元级大牌“爆米花”科技跑鞋,98元就能体验到

    2023-03-16

  • 雪国列车迅雷下载完整版_雪国列车迅雷下载

    雪国列车迅雷下载完整版_雪国列车迅雷下载

    2023-03-16

  • 总经理岗位职责及任职要求百度文库_总经理岗位职责

    总经理岗位职责及任职要求百度文库_总经理岗位职责

    2023-03-16

  • 天天精选!03月16日12时河南郑州疫情数据 阳了以后为什么会腰疼?应该怎么办?

    天天精选!03月16日12时河南郑州疫情数据 阳了以后为什么会腰疼?应该怎么办?

    2023-03-16

  • 全球热文:46岁“天才历史学者”李硕透露突发绝症,即将离世!他写活人祭祀的《翦商》,你读过吗?

    全球热文:46岁“天才历史学者”李硕透露突发绝症,即将离世!他写活人祭祀的《翦商》,你读过吗?

    2023-03-16

  • 【全球热闻】山楂吃了5天流产了吗_山楂吃了5天流产了

    【全球热闻】山楂吃了5天流产了吗_山楂吃了5天流产了

    2023-03-16

  • 今日报丨椰蓉小卷

    今日报丨椰蓉小卷

    2023-03-16

  • 滚动:03月16日06时广东河源疫情数据 阳了以后为什么会腰疼?应该怎么办?

    滚动:03月16日06时广东河源疫情数据 阳了以后为什么会腰疼?应该怎么办?

    2023-03-16

  • 无种子的植物叫什么_无种子植物

    无种子的植物叫什么_无种子植物

    2023-03-16

  • 广州市监局:已关注到美容针乱象问题 正在处理

    广州市监局:已关注到美容针乱象问题 正在处理

    2023-03-15

  • 天天消息!四川成渝: 四川成渝关于超短期融资券获准注册的公告

    天天消息!四川成渝: 四川成渝关于超短期融资券获准注册的公告

    2023-03-15

  • 内蒙古:今年将开展创业培训2万人次以上

    内蒙古:今年将开展创业培训2万人次以上

    2023-03-15

  • 母亲的直升机梦

    母亲的直升机梦

    2023-03-15

  • 世界消息!干咸蟹子怎么腌制?

    世界消息!干咸蟹子怎么腌制?

    2023-03-15

  • 焦点精选!国家统计局

    焦点精选!国家统计局

    2023-03-15

  • 老坛酸菜去年被315曝光 酸菜鱼又被盯上了:20多家餐厅非活鱼现杀

    老坛酸菜去年被315曝光 酸菜鱼又被盯上了:20多家餐厅非活鱼现杀

    2023-03-15

  • 每日视讯:薪酬管理的重要性论文_薪酬管理的重要性

    每日视讯:薪酬管理的重要性论文_薪酬管理的重要性

    2023-03-15

  • 报道:微软Surface人体工程学键盘

    报道:微软Surface人体工程学键盘

    2023-03-15

  • 我国造纸行业需求回暖 纸企盈利有望获得明显修复

    我国造纸行业需求回暖 纸企盈利有望获得明显修复

    2023-03-14

  • 梅罗相聚?记者:利雅得新月3亿欧合同邀请梅西加盟...

    梅罗相聚?记者:利雅得新月3亿欧合同邀请梅西加盟...

    2023-03-14

  • 沉没的反义词有什么_沉没的反义词

    沉没的反义词有什么_沉没的反义词

    2023-03-14

  • 世界今热点:承德市召开“驾享春日”政府惠民购车节新闻发布会

    世界今热点:承德市召开“驾享春日”政府惠民购车节新闻发布会

    2023-03-14

  • 最新资讯:美国硅谷银行破产持续引发关注

    最新资讯:美国硅谷银行破产持续引发关注

    2023-03-14

  • 2023广东普通高等学校招收中职毕业生统考考生成绩公布安排

    2023广东普通高等学校招收中职毕业生统考考生成绩公布安排

    2023-03-14

  • 黄娟幼妇外孙齑臼到底是什么意思_黄娟

    黄娟幼妇外孙齑臼到底是什么意思_黄娟

    2023-03-14

  • 天天讯息:今日flash版本太低怎么办?

    天天讯息:今日flash版本太低怎么办?

    2023-03-14