Just I gone through,
Under what conditions is a JSESSIONID created?
Till now I am in a impression that,
Gives me the current session(giving,not creating) based upon the boolean
passed to that method.Looks cool till here.
Now I read that
Session is created when your code calls request.getSession() or request.getSession(true) for the first time.
So ,If I'm not calling request.getSession()
in my any of servlets
, And those servlets are made to serve some static html pages (around 50),
1)There is no need of a session
between the container and the client ?
2)If no how container is detecting(serving a html page) client ?any hidden info in headers other than the session id
?
A
HttpSession
is not always required. This is the case, if the servlet is "stateless", and the information from the HTTP request is sufficient to fulfill the request.So a
HttpSession
is not created, if you have servlets which do not callrequest.getSession()
.Generally speaking the
HttpSession
is required, if the servlet has to detect if multiple requests come from the same client. For example to manage conversational state (like a shopping cart etc.) in a session attribute.Example:
telnet
into a servlet which only returns a text/plain string: The text in bold has been typed in (that's the HTTP request)A sesion is not created in this case.
Example: A simple JSP which returns nothing but a static HTML content:
In that case, a session is created, and the cookie is set, even if the JSP does not call
request.getSession()
explicitly!Therefore I have attached a
HttpSessionListener
, and indeed, a session is created implicitly. In that listener I dumped a stack trace:These tests have been run using JBoss 7.
To check if a session is created or not, just re-test it in your environment using a
HttpSessionListener
: