I\'m working on a project with the following technologies:
While I\'m de
Tomcat 6, add disableURLRewriting="true" in your context.xml
Tomcat 7 and ServletFilter have already been discussed
Or programmatically :
servletContext.setSessionTrackingModes(EnumSet.of(SessionTrackingMode.COOKIE));