Tomcat cookie是如何形成的?
tomcat 会话 cookie 的具体形成方式和时间。
我可以看到 COOKIE_SUPPORT
、GUEST_LANGUAGE_ID
、JSESSIONID
、LOGIN
,我已经 下载了源代码,但仍然看不到完整图片(实际上,我只能找到 JSESSIONID
)。
如果您还提供有关如何准确配置和组织 tomcat 会话的任何有价值的链接,那就太好了。
How exactly and when exactly tomcat session cookies are formed.
I can see COOKIE_SUPPORT
, GUEST_LANGUAGE_ID
, JSESSIONID
, LOGIN
, I've downloaded source code, but nevertheless cannot see full picture (actually, I can find only JSESSIONID
).
It would be nice if you also provide any worthy link about how exactly tomcat sessions are configured and organized.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定其他的,但对于 JSESSIONID,您应该阅读 servlet 规范以了解何时创建会话。这些规范中包含必须由兼容的 servlet 容器实现的功能。
Servlet 2.4 规范,SRV.7 会话。
Servlet 3.0 规范。
Servlet 3.1 规范。
I'm not sure about the others, but for JSESSIONID you should read the servlet spec for when sessions are to be created. In these specs are features that must be implemented by compatible servlet containers.
Servlet 2.4 spec, SRV.7 Sessions.
Servlet 3.0 spec.
Servlet 3.1 spec.
只有 JSESSIONID 是特定于 servlet 容器的。剩余部分特定于 Liferay portlet您的网络应用程序显然正在使用的框架。
Only
JSESSIONID
is specific to servletcontainers. The remnant are specific to Liferay portlet framework which your webapplication is apparently using.