Доступ к HttpSession вне первоначально полученного потока

Я использую Spring 3. Когда контроллер получает запросы, он передает управление методуsomeMethod() с пометкой@Async в служебном бине, а затем возвращается. Когда я получаю доступ вsomeMethod() HttpSession объект Я получаю это исключение

<code>java.lang.IllegalStateException: No thread-bound request found: Are you 
referring to request attributes outside of an actual web request, or 
processing a request outside of the originally receiving thread? If you are 
actually operating within a web request and still receive this message, your 
code is probably running outside of DispatcherServlet/DispatcherPortlet: In 
this case, use RequestContextListener or 
RequestContextFilter to expose the current request.
</code>

Как я могу решить это?

Ответы на вопрос(1)

Ваш ответ на вопрос