Struts2中的开启AsyncContext的方法
Posted Mustr
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Struts2中的开启AsyncContext的方法相关的知识,希望对你有一定的参考价值。
//获取到request
HttpServletRequest req = ServletActionContext.getRequest();
//设置属性org.apache.catalina.ASYNC_SUPPORTED为true
req.setAttribute("org.apache.catalina.ASYNC_SUPPORTED", true);
AsyncContext async = req.startAsync(getRequest(), getResponse());
以上是关于Struts2中的开启AsyncContext的方法的主要内容,如果未能解决你的问题,请参考以下文章
从 HttpServletRequest 获取 AsyncContext
Servlet 3.0 AsyncContext 在超时时返回响应
The request associated with the AsyncContext has already completed processing