How do you configure HttpOnly cookies in tomcat / java webapps?

后端 未结 9 1008
迷失自我
迷失自我 2020-11-27 10:47

After reading Jeff\'s blog post on Protecting Your Cookies: HttpOnly. I\'d like to implement HttpOnly cookies in my web application.

How do you tell tomcat to use ht

9条回答
  •  执笔经年
    2020-11-27 11:23

    also it should be noted that turning on HttpOnly will break applets that require stateful access back to the jvm.

    the Applet http requests will not use the jsessionid cookie and may get assigned to a different tomcat.

提交回复
热议问题