最佳答案
Spring MVC的DispatcherServlet将请求存储在线程局部变量中(如果你不使用Spring MVC,你可以在web.xml中声明RequestContextListener来做同样的事情).可以通过
原文链接:https://www.f2er.com/spring/431422.htmlRequestContextHolder
访问此变量:
HttpSession s = (HttpSession) RequestContextHolder
.currentRequestAttributes()
.resolveReference(RequestAttributes.REFERENCE_SESSION);