I understand the difference between request.getSession(true) and request.getSession(false). But request.getSession() & request.g
request.getSession(true)
request.getSession(false)
request.getSession()
request.g
request.getSession() is just a convenience method. It does exactly the same as request.getSession(true).