Differences between cookies and sessions?

前端 未结 9 1812
时光取名叫无心
时光取名叫无心 2020-11-28 00:42

I am training in web developement and am learning about JSP & Servlets. I have some knowledge of HttpSession - I have used

9条回答
  •  眼角桃花
    2020-11-28 01:05

    Cookie is a way to implement the session between client and server, in this way session information stored in cookie. But this is not the only way to hold the session info, another way is store session info in Url.

提交回复
热议问题