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

AsyncContext异步和多线程区别

AsyncContext简介

Servlet 3.0 AsyncContext 在超时时返回响应

struts2与spring整合时需要注意的点

The request associated with the AsyncContext has already completed processing