Tomcat Session Replication not working with Spring 3.2
Hi
I've tried to migrate a webapp from Spring 3.1.3 to 3.2.0. The application is using <mvc:annotation-driven>. After upgrading the Spring dependencies, Tomcat session replication has stopped to work.
In the web.xml there is:
In the server.xml there is:
Code:
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster"/>
During Tomcat startup I can see in the logs that everything concerning the SimpleTcpCluster seems to work. The application is just not recognizing the cluster-setup.
Analyzing with JConsole gives the following MBean values:
Code:
3.1.3:
- Catalina.Manager.${ServletContext}.localhost.Attributes.className: org.apache.catalina.session.DeltaManager
- Catalina.Manager.${ServletContext}.localhost.Attributes.distributable: true
3.2.0:
- Catalina.Manager.${ServletContext}.localhost.Attributes.className: org.apache.catalina.session.StandardManager
- Catalina.Manager.${ServletContext}.localhost.Attributes.distributable: false
Any ideas what is going wrong and how I can fix it?
Thanks in advance for your replies.