Is it possible to statically obtain the HttpSession (i.e. from
HttpServletRequest.getSession()) ?
For example, the Cinnamon (Flex AMF provider) Servlet puts the current
relevant servlet context objects into a statically available ThreadLocal
during the execution of your implementation classes.
I know its possible to use @Resource to inject what I want into a jersey
resource, however, what I'm trying to accomplish by unifying a few
different technologies would be well suited if I could statically access
the current http session information (if we happen to be executing
within some context started by jersey).
I'm looking through the jersey SpringServlet and ServletContainer now
and I'm not seeing anything like that, but I just wanted to make sure.