I was wondering when you would want to set the following page directive in a JSP:
<%@ page session=\"false\" %>
I know that it prevents th
This setting is also a security measure, as it also avoids a potential DoS attack. Think about a simple script that iteratively wgets the JSP: it will generate a lot of sessions in few seconds.