Is HttpSession in java servlet is created only after
HttpSession s = request.getSession();
?
In my code I didn't write that, but when I use if (request.getSession(false) == null) ..., it doesn't work. Why?
|
Is HttpSession in java servlet is created only after
? In my code I didn't write that, but when I use |
|||||||||||
|
|
A HttpSession is created when calling request.getSession(). But if you access a JSP by default it will automatically create a session.This behaviour can be disabled by using: Are you using JSP? |
|||||||
|
|
Read JavaDocs, it says clearly: This says, request.getSession()
And the other variant request.getSession(isCreate)
Update On a bit research, I have found that Session is not created unless refer:
But, to be safer side, use |
|||||||||||
|
|
In addition to Nishant's answer note that session can be created implicitly by JSP pages unless you configured them not to create a session with |
|||
|
|
|
Try to remove session cookies from browser and make another test. If it does not work then some other component is creating a new session before that call. |
|||
|
|
|
To make it complete:
|
|||
|
|