Can I turn off the HttpSession in web.xml?
I would like to eliminate the HttpSession completely You can’t entirely disable it. All you need to do is to just not to get a handle of it by either request.getSession() or request.getSession(true) anywhere in your webapplication’s code and making sure that your JSPs don’t implicitly do that by setting <%@page session=”false”%>. If your main … Read more