Servlet Session
Hi all,What is the difference between getSession() and getSession(false)
[93 byte] By [
Dolphina] at [2007-10-1 1:07:12]

getSession(), creates a session if one does not already exists.getSession(boolean create), returns a session if one exists, if one doesn't the it will create one if the argument is true, else it returns null.