What is session management in Java?

后端 未结 6 1243
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-23 18:20

I have faced this question in my Interview as well. I do have many confusion with Session Scope & it management in java.

In web.xml we do have the entry :

<
6条回答
  •  粉色の甜心
    2020-12-23 18:44

    we have 4 ways to manage a session.

    1.Cookies 2.URL rewriting 3.Hidden form fields 4.HTTP session

    the fourth one is powerful and mostly used now-a-days.

提交回复
热议问题