AsyncContext类具有Servlet 4.0规范中的getRequest()方法:
此返回值(相同(Http)SevletRequest?)与
中的request
有何不同(或可能有所不同)?
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
AsyncContext asyncContext = request.startAsync(request, response);
也许为了方便起见,需要myAsyncContext.getRequest(),因为我会将myAsyncContext传递到某个方法(用于异步处理的工作线程)中,并且请求包装在myAsyncContext内(否则,我必须将requst作为附加的方法参数传递)?