asyncContext.getRequest()与doGet()中的请求-在(异步)Servlet中它们是一样的还是有什么不同?

时间:2019-03-14 08:45:27

标签: servlets

AsyncContext类具有Servlet 4.0规范中的getRequest()方法:

enter image description here

此返回值(相同(Http)SevletRequest?)与

中的request有何不同(或可能有所不同)?
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        AsyncContext asyncContext = request.startAsync(request, response);

也许为了方便起见,需要myAsyncContext.getRequest(),因为我会将myAsyncContext传递到某个方法(用于异步处理的工作线程)中,并且请求包装在myAsyncContext内(否则,我必须将requst作为附加的方法参数传递)?

0 个答案:

没有答案