Thursday December 18, 2003
Stop Tomcat from persisting sessions
I can't seem to find the blog post about how to disable Session persistence for a given <Context>. Anyone got a link?
Posted in Java
at Dec 18 2003, 09:49:38 PM MST
2 Comments
Search This Site
Recent Entries
- Secure JSON Services with Play Scala and SecureSocial
- My What's New in Spring 3.1 Presentation
- Twitter's Open Source Summit: Bootstrap 2.0 Edition
- Refreshing AppFuse's UI with Twitter Bootstrap
- 2011 - A Year in Review
- Upgrading AppFuse to Spring Security 3.1 and Spring 3.1
- What have I been working on at Taleo?
- Our Engaging Trip to Paris and Antwerp
- My HTML5 with Play Scala, CoffeeScript and Jade Presentation from Devoxx 2011
- Deploying Java and Play Framework Apps to the Cloud with James Ward
adding this manager to the context does the trick for me... though it seems quite hacky... but i haven't found a better solution yet.
<Manager className="org.apache.catalina.session.PersistentManager" debug="0" saveOnRestart="false" maxActiveSessions="-1" minIdleSwap="-1" maxIdleSwap="-1" maxIdleBackup="-1"> <Store className="org.apache.catalina.session.FileStore"/> </Manager>Posted by Unknown on December 19, 2003 at 06:38 AM MST #
Posted by Aurélien on December 22, 2003 at 09:35 AM MST #