Spring Boot利用@Async如何实现异步调用:自定义线程池
前言
在之前的spring boot基础教程系列中,已经通过《spring boot中使用@async实现异步调用》一文介绍过如何使用@async注解来实现异步调用了。但是,对于这些异步执行的控制是我们保障自身应用健康的基本技能。本文我们就来学习一下,如果通过自定义线程池的方式来控制异步调用的并发。
本文中的例子我们可以在之前的例子基础上修改,也可以创建一个全新的spring boot项目来尝试。
定义线程池
第一步,先在spring boot主类中定义一个线程池,比如:
@springbootapplication public class application { public static void main(string[] args) { springapplication.run(application.class, args); } @enableasync @configuration class taskpoolconfig { @bean("taskexecutor") public executor taskexecutor() { threadpooltaskexecutor executor = new threadpooltaskexecutor(); executor.setcorepoolsize(10); executor.setmaxpoolsize(20); executor.setqueuecapacity(200); executor.setkeepaliveseconds(60); executor.setthreadnameprefix("taskexecutor-"); executor.setrejectedexecutionhandler(new threadpoolexecutor.callerrunspolicy()); return executor; } } }
上面我们通过使用threadpooltaskexecutor创建了一个线程池,同时设置了以下这些参数:
- 核心线程数10:线程池创建时候初始化的线程数
- 最大线程数20:线程池最大的线程数,只有在缓冲队列满了之后才会申请超过核心线程数的线程
- 缓冲队列200:用来缓冲执行任务的队列
- 允许线程的空闲时间60秒:当超过了核心线程出之外的线程在空闲时间到达之后会被销毁
- 线程池名的前缀:设置好了之后可以方便我们定位处理任务所在的线程池
- 线程池对拒绝任务的处理策略:这里采用了callerrunspolicy策略,当线程池没有处理能力的时候,该策略会直接在 execute 方法的调用线程中运行被拒绝的任务;如果执行程序已关闭,则会丢弃该任务
使用线程池
在定义了线程池之后,我们如何让异步调用的执行任务使用这个线程池中的资源来运行呢?方法非常简单,我们只需要在@async注解中指定线程池名即可,比如:
@slf4j @component public class task { public static random random = new random(); @async("taskexecutor") public void dotaskone() throws exception { log.info("开始做任务一"); long start = system.currenttimemillis(); thread.sleep(random.nextint(10000)); long end = system.currenttimemillis(); log.info("完成任务一,耗时:" + (end - start) + "毫秒"); } @async("taskexecutor") public void dotasktwo() throws exception { log.info("开始做任务二"); long start = system.currenttimemillis(); thread.sleep(random.nextint(10000)); long end = system.currenttimemillis(); log.info("完成任务二,耗时:" + (end - start) + "毫秒"); } @async("taskexecutor") public void dotaskthree() throws exception { log.info("开始做任务三"); long start = system.currenttimemillis(); thread.sleep(random.nextint(10000)); long end = system.currenttimemillis(); log.info("完成任务三,耗时:" + (end - start) + "毫秒"); } }
单元测试
最后,我们来写个单元测试来验证一下
@runwith(springjunit4classrunner.class) @springboottest public class applicationtests { @autowired private task task; @test public void test() throws exception { task.dotaskone(); task.dotasktwo(); task.dotaskthree(); thread.currentthread().join(); } }
执行上面的单元测试,我们可以在控制台中看到所有输出的线程名前都是之前我们定义的线程池前缀名开始的,说明我们使用线程池来执行异步任务的试验成功了!
2018-03-27 22:01:15.620 info 73703 --- [ taskexecutor-1] com.didispace.async.task : 开始做任务一
2018-03-27 22:01:15.620 info 73703 --- [ taskexecutor-2] com.didispace.async.task : 开始做任务二
2018-03-27 22:01:15.620 info 73703 --- [ taskexecutor-3] com.didispace.async.task : 开始做任务三
2018-03-27 22:01:18.165 info 73703 --- [ taskexecutor-2] com.didispace.async.task : 完成任务二,耗时:2545毫秒
2018-03-27 22:01:22.149 info 73703 --- [ taskexecutor-3] com.didispace.async.task : 完成任务三,耗时:6529毫秒
2018-03-27 22:01:23.912 info 73703 --- [ taskexecutor-1] com.didispace.async.task : 完成任务一,耗时:8292毫秒
完整示例:
读者可以根据喜好选择下面查看chapter4-1-3项目:
github:https://github.com/dyc87112/springboot-learning/
gitee:https://gitee.com/didispace/springboot-learning/
本地下载:http://xiazai.jb51.net/201805/yuanma/springboot-learning(jb51.net).rar
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对的支持。
上一篇: 有了源码该如何使用,源码使用教程