SpringBoot多线程进行异步请求的处理方式
springboot多线程进行异步请求的处理
近期在协会博客园中,有人发布了博客,系统进行查重的时候由于机器最低配置进行大量计算时需要十秒左右时间才能处理完,由于一开始是单例模式,导致,在某人查重的时候整个系统是不会再响应别的请求的,导致了系统假死状态,那么我们就应该使用多线程进行处理,将这种不能快速返回结果的方法交给线程池进行处理。
而我们自己使用java thread实现多线程又比较麻烦,在这里我们使用springboot自带的多线程支持,仅需两步就可以对我们的查重方法利用多线程进行处理
第一步:编写配置类
import org.springframework.context.annotation.bean; import org.springframework.context.annotation.configuration; import org.springframework.scheduling.annotation.enableasync; import org.springframework.scheduling.concurrent.threadpooltaskexecutor; import java.util.concurrent.executor; @configuration @enableasync // 启用异步任务 public class asyncconfig { // 声明一个线程池(并指定线程池的名字) @bean("asyncthread") public executor asyncexecutor() { threadpooltaskexecutor executor = new threadpooltaskexecutor(); //核心线程数5:线程池创建时候初始化的线程数 executor.setcorepoolsize(5); //最大线程数5:线程池最大的线程数,只有在缓冲队列满了之后才会申请超过核心线程数的线程 executor.setmaxpoolsize(10); //缓冲队列500:用来缓冲执行任务的队列 executor.setqueuecapacity(500); //允许线程的空闲时间60秒:当超过了核心线程出之外的线程在空闲时间到达之后会被销毁 executor.setkeepaliveseconds(60); //线程池名的前缀:设置好了之后可以方便我们定位处理任务所在的线程池 executor.setthreadnameprefix("asyncthread-"); executor.initialize(); return executor; } }
第二步:对方法使用注解标注为使用多线程进行处理
并将方法改写返回类型(因为不能立即返回,所以需要将返回值改为completablefuture<string>,
返回的时候使用return completablefuture.completedfuture(str);)
方法示范:
@async("asyncthread") @requestmapping(value = "/addblog") public completablefuture<string> addblog(httpsession httpsession, blog blog, string blogid, boolean tempsave) { system.out.println("\n\n----------------------------------------------"); system.out.println(thread.currentthread().getname() + "正在处理请求"); system.out.println("----------------------------------------------"); string result = "请求失败"; //....你的业务逻辑 return completablefuture.completedfuture(result); }
这样以后你的这个方法将会交由线程池去进行处理,并将结果返回,一定要记得改返回值类型,否则返回的将是空的。
springboot请求线程优化
在我们的实际生产中,常常会遇到下面的这种情况,某个请求非常耗时(大约5s返回),当大量的访问该请求的时候,再请求其他服务时,会造成没有连接使用的情况,造成这种现象的主要原因是,我们的容器(tomcat)中线程的数量是一定的,例如500个,当这500个线程都用来请求服务的时候,再有请求进来,就没有多余的连接可用了,只能拒绝连接。要是我们在请求耗时服务的时候,能够异步请求(请求到controller中时,则容器线程直接返回,然后使用系统内部的线程来执行耗时的服务,等到服务有返回的时候,再将请求返回给客户端),那么系统的吞吐量就会得到很大程度的提升了。当然,大家可以直接使用hystrix的资源隔离来实现,今天我们的重点是spring mvc是怎么来实现这种异步请求的。
使用callable来实现
controller如下:
@restcontroller public class hellocontroller {undefined private static final logger logger = loggerfactory.getlogger(hellocontroller.class); @autowired private helloservice hello; @getmapping("/helloworld") public string helloworldcontroller() {undefined return hello.sayhello(); } /** * 异步调用restful * 当controller返回值是callable的时候,springmvc就会启动一个线程将callable交给taskexecutor去处理 * 然后dispatcherservlet还有所有的spring拦截器都退出主线程,然后把response保持打开的状态 * 当callable执行结束之后,springmvc就会重新启动分配一个request请求,然后dispatcherservlet就重新 * 调用和处理callable异步执行的返回结果, 然后返回视图 * * @return */ @getmapping("/hello") public callable<string> hellocontroller() {undefined logger.info(thread.currentthread().getname() + " 进入hellocontroller方法"); callable<string> callable = new callable<string>() {undefined @override public string call() throws exception {undefined logger.info(thread.currentthread().getname() + " 进入call方法"); string say = hello.sayhello(); logger.info(thread.currentthread().getname() + " 从helloservice方法返回"); return say; } }; logger.info(thread.currentthread().getname() + " 从hellocontroller方法返回"); return callable; } }
我们首先来看下上面这两个请求的区别:
下面这个是没有使用异步请求的
2017-12-07 18:05:42.351 info 3020 --- [nio-8060-exec-5] c.travelsky.controller.hellocontroller : http-nio-8060-exec-5 进入helloworldcontroller方法
2017-12-07 18:05:42.351 info 3020 --- [nio-8060-exec-5] com.travelsky.service.helloservice : http-nio-8060-exec-5 进入sayhello方法!
2017-12-07 18:05:44.351 info 3020 --- [nio-8060-exec-5] c.travelsky.controller.hellocontroller : http-nio-8060-exec-5 从helloworldcontroller方法返回
我们可以看到,请求从头到尾都只有一个线程,并且整个请求耗费了2s钟的时间。
下面,我们再来看下使用callable异步请求的结果:
2017-12-07 18:11:55.671 info 6196 --- [nio-8060-exec-1] c.travelsky.controller.hellocontroller : http-nio-8060-exec-1 进入hellocontroller方法
2017-12-07 18:11:55.672 info 6196 --- [nio-8060-exec-1] c.travelsky.controller.hellocontroller : http-nio-8060-exec-1 从hellocontroller方法返回
2017-12-07 18:11:55.676 info 6196 --- [nio-8060-exec-1] c.t.i.myasynchandlerinterceptor : http-nio-8060-exec-1 进入afterconcurrenthandlingstarted方法
2017-12-07 18:11:55.676 info 6196 --- [ mvcasync1] c.travelsky.controller.hellocontroller : mvcasync1 进入call方法
2017-12-07 18:11:55.676 info 6196 --- [ mvcasync1] com.travelsky.service.helloservice : mvcasync1 进入sayhello方法!
2017-12-07 18:11:57.677 info 6196 --- [ mvcasync1] c.travelsky.controller.hellocontroller : mvcasync1 从helloservice方法返回
2017-12-07 18:11:57.721 info 6196 --- [nio-8060-exec-2] c.t.i.myasynchandlerinterceptor : http-nio-8060-exec-2服务调用完成,返回结果给客户端
从上面的结果中,我们可以看出,容器的线程http-nio-8060-exec-1这个线程进入controller之后,就立即返回了,具体的服务调用是通过mvcasync2这个线程来做的,当服务执行完要返回后,容器会再启一个新的线程http-nio-8060-exec-2来将结果返回给客户端或浏览器,整个过程response都是打开的,当有返回的时候,再从server端推到response中去。
1、异步调用的另一种方式
上面的示例是通过callable来实现的异步调用,其实还可以通过webasynctask,也能实现异步调用,下面看示例:
@restcontroller public class hellocontroller {undefined private static final logger logger = loggerfactory.getlogger(hellocontroller.class); @autowired private helloservice hello; /** * 带超时时间的异步请求 通过webasynctask自定义客户端超时间 * * @return */ @getmapping("/world") public webasynctask<string> worldcontroller() {undefined logger.info(thread.currentthread().getname() + " 进入hellocontroller方法"); // 3s钟没返回,则认为超时 webasynctask<string> webasynctask = new webasynctask<>(3000, new callable<string>() {undefined @override public string call() throws exception {undefined logger.info(thread.currentthread().getname() + " 进入call方法"); string say = hello.sayhello(); logger.info(thread.currentthread().getname() + " 从helloservice方法返回"); return say; } }); logger.info(thread.currentthread().getname() + " 从hellocontroller方法返回"); webasynctask.oncompletion(new runnable() {undefined @override public void run() {undefined logger.info(thread.currentthread().getname() + " 执行完毕"); } }); webasynctask.ontimeout(new callable<string>() {undefined @override public string call() throws exception {undefined logger.info(thread.currentthread().getname() + " ontimeout"); // 超时的时候,直接抛异常,让外层统一处理超时异常 throw new timeoutexception("调用超时"); } }); return webasynctask; } /** * 异步调用,异常处理,详细的处理流程见myexceptionhandler类 * * @return */ @getmapping("/exception") public webasynctask<string> exceptioncontroller() {undefined logger.info(thread.currentthread().getname() + " 进入hellocontroller方法"); callable<string> callable = new callable<string>() {undefined @override public string call() throws exception {undefined logger.info(thread.currentthread().getname() + " 进入call方法"); throw new timeoutexception("调用超时!"); } }; logger.info(thread.currentthread().getname() + " 从hellocontroller方法返回"); return new webasynctask<>(20000, callable); } }
运行结果如下:
2017-12-07 19:10:26.582 info 6196 --- [nio-8060-exec-4] c.travelsky.controller.hellocontroller : http-nio-8060-exec-4 进入hellocontroller方法
2017-12-07 19:10:26.585 info 6196 --- [nio-8060-exec-4] c.travelsky.controller.hellocontroller : http-nio-8060-exec-4 从hellocontroller方法返回
2017-12-07 19:10:26.589 info 6196 --- [nio-8060-exec-4] c.t.i.myasynchandlerinterceptor : http-nio-8060-exec-4 进入afterconcurrenthandlingstarted方法
2017-12-07 19:10:26.591 info 6196 --- [ mvcasync2] c.travelsky.controller.hellocontroller : mvcasync2 进入call方法
2017-12-07 19:10:26.591 info 6196 --- [ mvcasync2] com.travelsky.service.helloservice : mvcasync2 进入sayhello方法!
2017-12-07 19:10:28.591 info 6196 --- [ mvcasync2] c.travelsky.controller.hellocontroller : mvcasync2 从helloservice方法返回
2017-12-07 19:10:28.600 info 6196 --- [nio-8060-exec-5] c.t.i.myasynchandlerinterceptor : http-nio-8060-exec-5服务调用完成,返回结果给客户端
2017-12-07 19:10:28.601 info 6196 --- [nio-8060-exec-5] c.travelsky.controller.hellocontroller : http-nio-8060-exec-5 执行完毕
这种方式和上面的callable方式最大的区别就是,webasynctask支持超时,并且还提供了两个回调函数,分别是oncompletion和ontimeout,顾名思义,这两个回调函数分别在执行完成和超时的时候回调。
3、deferred方式实现异步调用
在我们是生产中,往往会遇到这样的情景,controller中调用的方法很多都是和第三方有关的,例如jms,定时任务,队列等,拿jms来说,比如controller里面的服务需要从jms中拿到返回值,才能给客户端返回,而从jms拿值这个过程也是异步的,这个时候,我们就可以通过deferred来实现整个的异步调用。
首先,我们来模拟一个长时间调用的任务,代码如下:
@component public class longtimetask {undefined private final logger logger = loggerfactory.getlogger(this.getclass()); @async public void execute(deferredresult<string> deferred){undefined logger.info(thread.currentthread().getname() + "进入 taskservice 的 execute方法"); try {undefined // 模拟长时间任务调用,睡眠2s timeunit.seconds.sleep(2); // 2s后给deferred发送成功消息,告诉deferred,我这边已经处理完了,可以返回给客户端了 deferred.setresult("world"); } catch (interruptedexception e) {undefined e.printstacktrace(); } } }
接着,我们就来实现异步调用,controller如下:
@restcontroller public class asyncdeferredcontroller {undefined private final logger logger = loggerfactory.getlogger(this.getclass()); private final longtimetask taskservice; @autowired public asyncdeferredcontroller(longtimetask taskservice) {undefined this.taskservice = taskservice; } @getmapping("/deferred") public deferredresult<string> executeslowtask() {undefined logger.info(thread.currentthread().getname() + "进入executeslowtask方法"); deferredresult<string> deferredresult = new deferredresult<>(); // 调用长时间执行任务 taskservice.execute(deferredresult); // 当长时间任务中使用deferred.setresult("world");这个方法时,会从长时间任务中返回,继续controller里面的流程 logger.info(thread.currentthread().getname() + "从executeslowtask方法返回"); // 超时的回调方法 deferredresult.ontimeout(new runnable(){undefined @override public void run() {undefined logger.info(thread.currentthread().getname() + " ontimeout"); // 返回超时信息 deferredresult.seterrorresult("time out!"); } }); // 处理完成的回调方法,无论是超时还是处理成功,都会进入这个回调方法 deferredresult.oncompletion(new runnable(){undefined @override public void run() {undefined logger.info(thread.currentthread().getname() + " oncompletion"); } }); return deferredresult; } }
执行结果如下:
2017-12-07 19:25:40.192 info 6196 --- [nio-8060-exec-7] c.t.controller.asyncdeferredcontroller : http-nio-8060-exec-7进入executeslowtask方法
2017-12-07 19:25:40.193 info 6196 --- [nio-8060-exec-7] .s.a.annotationasyncexecutioninterceptor : no taskexecutor bean found for async processing
2017-12-07 19:25:40.194 info 6196 --- [nio-8060-exec-7] c.t.controller.asyncdeferredcontroller : http-nio-8060-exec-7从executeslowtask方法返回
2017-12-07 19:25:40.198 info 6196 --- [nio-8060-exec-7] c.t.i.myasynchandlerinterceptor : http-nio-8060-exec-7 进入afterconcurrenthandlingstarted方法
2017-12-07 19:25:40.202 info 6196 --- [ctaskexecutor-1] com.travelsky.controller.longtimetask : simpleasynctaskexecutor-1进入 taskservice 的 execute方法
2017-12-07 19:25:42.212 info 6196 --- [nio-8060-exec-8] c.t.i.myasynchandlerinterceptor : http-nio-8060-exec-8服务调用完成,返回结果给客户端
2017-12-07 19:25:42.213 info 6196 --- [nio-8060-exec-8] c.t.controller.asyncdeferredcontroller : http-nio-8060-exec-8 oncompletion
从上面的执行结果不难看出,容器线程会立刻返回,应用程序使用线程池里面的ctaskexecutor-1线程来完成长时间任务的调用,当调用完成后,容器又启了一个连接线程,来返回最终的执行结果。
这种异步调用,在容器线程资源非常宝贵的时候,能够大大的提高整个系统的吞吐量。
ps:异步调用可以使用asynchandlerinterceptor进行拦截,使用示例如下:
@component public class myasynchandlerinterceptor implements asynchandlerinterceptor {undefined private static final logger logger = loggerfactory.getlogger(myasynchandlerinterceptor.class); @override public boolean prehandle(httpservletrequest request, httpservletresponse response, object handler) throws exception {undefined return true; } @override public void posthandle(httpservletrequest request, httpservletresponse response, object handler, modelandview modelandview) throws exception {undefined // handlermethod handlermethod = (handlermethod) handler; logger.info(thread.currentthread().getname()+ "服务调用完成,返回结果给客户端"); } @override public void aftercompletion(httpservletrequest request, httpservletresponse response, object handler, exception ex) throws exception {undefined if(null != ex){undefined system.out.println("发生异常:"+ex.getmessage()); } } @override public void afterconcurrenthandlingstarted(httpservletrequest request, httpservletresponse response, object handler) throws exception {undefined // 拦截之后,重新写回数据,将原来的hello world换成如下字符串 string resp = "my name is chhliu!"; response.setcontentlength(resp.length()); response.getoutputstream().write(resp.getbytes()); logger.info(thread.currentthread().getname() + " 进入afterconcurrenthandlingstarted方法"); } }
有兴趣的可以了解下,我这里的主题是异步调用,其他的相关知识点,以后在讲解吧。希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
实现PHP多线程异步请求的3种方法
-
实现PHP多线程异步请求的3种方法
-
Python实现可设置持续运行时间、线程数及时间间隔的多线程异步post请求功能
-
SpringBoot里使用Servlet进行请求的实现示例
-
Ajax请求二进制流进行处理(ajax异步下载文件)的简单方法
-
SpringBoot多线程进行异步请求的处理方式
-
springboot整合mybatis使用三:使用PageHelper 进行分页操作,并整合swagger2。使用正规的开发模式:定义统一的数据返回格式和请求模块
-
Python实现可设置持续运行时间、线程数及时间间隔的多线程异步post请求功能
-
使用Item Loaders对Item数据进行提取和解析(整理) 以及 多线程异步的形式对数据进行写入
-
php 异步请求文件实现多线程的代码