I tried to disable session in
jsp like this:
<%@ page session="false" contentType="text/html; charset=GBK" %>
then I checked the existence of session using following statement:
if(request.getSession(false)!=null)
log.info("session already existed");
it always returns "session already existed", anyone help me out?