如何将会话 cookie 配置为仅 http
设置 http-only 我在 web.xml 中使用了它
<session-config>
<cookie-config>
<http-only>true</http-only>
</cookie-config>
</session-config>
,但它没有设置 http-only。 任何人都可以建议,可能是什么问题。以及如何设置。
谢谢。
to set http-only I used this in web.xml
<session-config>
<cookie-config>
<http-only>true</http-only>
</cookie-config>
</session-config>
but it is not setting http-only.
can any one suggest, what may be the problem. and how to set it.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用哪个容器以及哪个版本?
注意,true只能在web.xml中使用,从servlet 3.0开始
Which container are you using and in which version?
pay attention since true can be used in web.xml only since servlet 3.0