Tomcat default standard manager preserves sessions across tomcat restart, we had a special requirement to disable this feature. The way to do this is to introduce a Manager tag with pathname="" as shown below in server.xml under context element
<Context path="" docBase="ROOT" debug="0" privileged="true">
<Manager pathname="" />
.........
</Context>
Comments
Post a Comment