Java examples for Servlet JSP:JSP
Preventing the Creation of a Session in a JSP Page
<%-- Prevent the creation of a session --%> <%@ page session="false"> <html> <head><title>A Session-less JSP Page</title></head> <body> ... </body> </html>