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

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -