I'm wondering how can I user Spring Session in a Websphere App Server? Can I get 100% of Spring Session functionality? Does it have some limitations?
Asked
Active
Viewed 488 times
1 Answers
0
Spring Session should work in Websphere in the same way it works with any other container.
The way Spring Session works is by leveraging a Filter that replaces the servlet Filter implementation. You can read more about it in the reference.
I'm guessing you will need to configure the filter in the web.xml. If that is the case you can take a look at the HttpSession XML example.
One thing to keep in mind is that Spring Session does not currently support HttpSessionListener implementations. This is typically not a problem, but I wanted to make this explicit. If you have a need for this, you can vote for the feature / track it here.

Rob Winch
- 21,440
- 2
- 59
- 76