Is there a way to get all my JSPs to create sessions when using Jasper (Tomcat)? Jasper seems to create a session if you don't specify:
<%@ page contentType="text/html;charset=UTF-8" language="java" session="false" %>
Is there a way to do this for the whole webapp (session = "false")?
It seems that you cannot change:
org.apache.jasper.runtime.JspFactoryImpl.getPageContext
What will create a session if the JSP does not say session = false.
source
share