我如何在java中获取会话ID
我想用java构建一个api来解决在任何网站中将一个页面移动到另一个页面时出现的安全图像问题。我如何获取会话 ID 和 cookie,以便我可以将其与安全图像字符串一起发布。
谢谢
I want to build an api in java to solve the security image problem occurred while moving one page to another page in any website. How can i get the session id and cookies so that i can post it with the security image string.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下应该在 jsp 中给出会话 ID
如果您在容器中启用了 EL,则可以在没有 JSTL 标记的情况下执行此操作 - 即只是
或没有 EL 的容器的替代方案:
获取 Cookie 的示例如下:
引用自: http://www.roseindia.net/jsp/jspcookies.shtml
Following should give session id in jsp
If you have EL enabled in your container, you can do it without the JSTL tag - ie just
or An alternative for containers without EL:
Example to get Cookies is as :
Referenced from: http://www.roseindia.net/jsp/jspcookies.shtml