java - How do you disable session creation for all JSPs with Tiles? -
is there way make jsps not create sessions when using jasper (tomcat)? apparently jasper create session unless specify not to:
<%@ page contenttype="text/html;charset=utf-8" language="java" session="false" %>
is there way entire webapp (session="false")?
its seems can't change:
org.apache.jasper.runtime.jspfactoryimpl.getpagecontext
which create session unless jsp says session=false.
this container-specific; see this question.
Comments
Post a Comment