Difference between request.getSession() and request.getSession(true)

后端 未结 7 1735
难免孤独
难免孤独 2021-01-31 08:43

I understand the difference between request.getSession(true) and request.getSession(false). But request.getSession() & request.g

相关标签:
7条回答
  • 2021-01-31 09:12

    request.getSession(true) and request.getSession() both do the same thing, but if we use request.getSession(false) it will return null if session object not created yet.

    0 讨论(0)
提交回复
热议问题