how can i do sessions in java if some one disables cookies in my browser?

前端 未结 8 1486
长发绾君心
长发绾君心 2020-12-09 12:58

I like to know if someone disables the cookies in my browser then cookies dont work for my browser then how can I do sessions in java. I am writing servlets for server side

8条回答
  •  一生所求
    2020-12-09 13:49

    For reference, it's good to know that html5 introduces sessionStorage as part of Web Storage. There is a good article on 24ways.org introducing it: Breaking Out The Edges of The Browser.

    Support:

    • Latest: Internet Explorer, Firefox, Safari (desktop & mobile/iPhone)
    • Partial: Google Chrome (only supports localStorage)
    • Not supported: Opera (as of 10.10)

    HTML5 (including next generation additions still in development)

提交回复
热议问题