我刚刚在Servlet中编写代码时注意到这是有效的:

request.getAsyncContext().getRequest().getAsyncContext()
       .getRequest().getAsyncContext()...


这怎么可能?这一切意味着什么?

最佳答案

似乎您在那里有双向关系。
request.getAsyncContext().getRequest()基本上返回与'request'相同的Request对象

希望能帮助到你,

07-26 03:42