JSP
- On request it will create an instance of
HTTPSession for the user if one does not exist
- If you do not want an instance of HTTPSession to be
created use:
<%@ page session="false" %>
Servlet
- On request it will not create an instance of
HTTPSession
- HTTPSession can be created with
request.getSession( ) or
request.getSession(true)