是否可以更改 JSESSIONID cookie 的路径?
默认情况下,Glassfish 将 JSESSIONID cookie 存储在上下文路径中,例如“/mysite”。是否可以更改此路径,例如更改为“/mysite/admin”?我希望该会话仅在我的网站的一部分中有效,而不必将其拆分为两个单独的网站。
By default, Glassfish stores the JSESSIONID cookie at the context path, for example "/mysite". Is it possible to change this path, for example to "/mysite/admin"? I would like the session to be only valid in part of my website, without having to split it into two separate websites.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您网站的其他部分应该配置为另一个网络上下文?总体思路是每个 Web 上下文都有自己的一组会话,您不能共享或拆分它们。
Perhaps the other part of your web site should just be configured as another web context? The general idea is that each web context has its own set of sessions, and you don't share nor split them.