Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a session replication with tomcat and spring over terracotta. I put the Valve in the context.xml as instructed and when a request comes through i can see that it contains a terracotta http session object. However, spring session scoped beans seem to have no knowledge of this and when i try to get the session through the "RequestContextHolder" i get the plain old session object. I cannot find any documentation on how to correctly do this. I ended up putting the HttpSession in ThreadLocal and using it where i need it further down the road instead of using session scoped beans, but i don't think that this is the "correct" way of doing it. can anyone please shed some light on this?

Thanks in advance

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.