Disable sessions in Tomcat 6 for JSP
How can I configure tomcat to disable sessions in JSP? In each JSP file I can write
<%@ page ... session="false" %>
I think one configuration开发者_开发问答 have to be for all jsp files.
One way you need to do this is disabling session of the servlet container.
This implemenation of this would be container specific, but you can do this in Tomcat using The Manager Component
精彩评论