getSession() in servlet

getSession() in servlet

What is the difference between using getSession(true) and getSession(false) methods?

View Answers

November 2, 2010 at 4:03 PM

getSession(true) will check whether a session already exists for the user. If yes, it will return that session object else it will create a new session object and return it.

getSession(false) will check existence of session. If session exists, then it returns the reference of that session object, if not, this methods will return null.









Related Tutorials/Questions & Answers:

Ads