首页 > 作文

SpringBoot多线程进行异步请求的处理方式

更新时间:2023-04-04 08:14:32 阅读: 评论:0

目录
springboot多线程进行异步请求的处理第一步:编写配置类第二步:对方法使用注解标注为使用多线程进行处理springboot请求线程优化使用callable来实现1、异步调用的另一种方式3、deferred方式实现异步调用

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.tcorepoolsize(5);        //最大线程数5:线程池最大的线程数,只有在缓冲队列满了之后才会申请超过核心线程数的线程        executor.tmaxpoolsize(10);        //缓冲队列500:用来缓冲执行任务的队列        executor.tqueuecapacity(500);        //允许线程的空闲时间60秒:当超过了核心线程出之外的线程在空闲时间到达之后会被销毁        executor.tkeepaliveconds(60);        //线程池名的前缀:设置好了之后可以方便我们定位处理任务所在的线程池        executor.tthreadnameprefix("asyncthread-");        executor.initialize();  最美司机      return executor;    }}

第二步:对方法使用注解标注为使用多线程进行处理

并将方法改写返回类型(因为不能立即返回,所以需要将返回值改为completablefuture<string>,

返回的时候使用return completablefuture.completedfuture(str);)

方法示范:

    @async("asyncthread")    @requestmapping(value = "/addblog")    public completablefuture<string> addblog(httpssion httpssion, 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 hellorvice hello;             @getmapping("/helloworld")        public string helloworldcontroller() {undefined            return hello.sayhello();        }             /**         * 异步调用restful         * 当controller返回值是callable的时候,springmvc就会启动一个线程将callable交给taskexecutor去处理         * 然后dispatcherrvlet还有所有的spring拦截器都退出主线程,然后把respon保持打开的状态         * 当callable执行结束之后,springmvc就会重新启动分配一个request请求,然后dispatcherrvlet就重新         * 调用和处理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() + " 从hellorvice方法返回");                    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.rvice.hellorvice : 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.rvice.hellorvice : mvcasync1 进入sayhello方法!
2017-12-07 18:11:57.677 info 6196 — [ mvcasync1] c.travelsky.controller.hellocontroller : mvcasync1 从hellorvice方法返回
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来将结果返回给客户端或浏览器,整个过程respon都是打开的,当有返回的时候,再从rver端推到respon中去。

1、异步调用的另一种方式

上面的示例是通过callable来实现的异步调用,其实还可以通过webasynctask,也能实现异步调用,下面看示例:

    @restcontroller    public class hellocontroller {undefined             private static final logger logger = loggerfactory.getlogger(hellocontroller.class);                @autowired        private hellorvice 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() + " 从hellorvice方法返回");                    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-ni西游记中三打白骨精o-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.rvice.hellorvice : mvcasync2 进入sayhello方法!
2017-12-07 19:10:28.591 info 6196 — [ mvcasync2] c.travelsky.controller.hellocontroller : mvcasync2 从hellorvice方法返回
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() + "进入 taskrvice 的 execute方法");            try {undefined                // 模拟长时间任务调用,睡眠2s                timeunit.conds.sleep(2);                // 2s后给deferred发送成功消息,告诉deferred,我这边已经处理完了,可以返回给客户端了                deferred.tresult("world");            } catch (interruptedexception e) {undefined                e.printstacktrace();            }        }    }

接着,我们就来实现异步调用,controller如下:

    @restcontroller    public class asyncdeferredcontroller {undefined        private final logger logger = loggerfactory.getlogger(this.getclass());        private final longtimetask taskrvice;                @autowired        public asyncdeferredcontroller(longtimetask taskrvice) {undefined            this.taskrvice = taskrvice;        }                @getmapping("/deferred")        public deferredresult<string> executeslowtask() {undefined            logger.info(thread.currentthread().getname() + "进入executeslowtask方法");            deferredresult<string> deferredresult = new deferredresult<>();            // 调用长时间执行任务            taskrvice.execute(deferredresult);            // 当长时间任务中使用deferred.tresult("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.terrorresult("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进入 taskrvice 的 execute方法
2椭圆的公式017-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 {un暨南大学defined                private static final logger logger = loggerfactory.getlogger(myasynchandlerinterceptor.class);             @override        public boolean prehandle(httprvletrequest request, httprvletrespon respon, object handler)                throws exception {undefined            return true;        }             @override        public void posthandle(httprvletrequest request, httprvletrespon respon, object handler,                modelandview modelandview) throws exception {undefined    //        handlermethod handlermethod = (handlermethod) handler;            logger.info(thread.currentthread().getname()+ "服务调用完成,返回结果给客户端");        }             @override        public void aftercompletion(httprvletrequest request, httprvletrespon respon, object handler, exception ex)                throws exception {undefined            if(null != ex){undefined                system.out.println("发生异常:"+ex.getmessage());            }        }             @override        public void afterconcurrenthandlingstarted(httprvletrequest request, httprvletrespon respon, object handler)                throws exception {undefined                        // 拦截之后,重新写回数据,将原来的hello world换成如下字符串            string resp = "my name is chhliu!";            respon.tcontentlength(resp.length());            respon.getoutputstream().write(resp.getbytes());                        logger.info(thread.currentthread().getname() + " 进入afterconcurrenthandlingstarted方法");        }         }

有兴趣的可以了解下,我这里的主题是异步调用,其他的相关知识点,以后在讲解吧。希望能给大家一个参考,也希望大家多多支持www.887551.com。

本文发布于:2023-04-04 08:14:29,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/0ef3b3ec80f56c3e2b72f082df325b0c.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:SpringBoot多线程进行异步请求的处理方式.doc

本文 PDF 下载地址:SpringBoot多线程进行异步请求的处理方式.pdf

标签:线程   方法   多线程   长时间
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图