将多个 cookie 写入 Java HTTP 响应 (HttpSlingServletResponse) 不起作用
我正在尝试将多个 cookie 写入 SlingHttpServletResponse,但是只有我写入的最后一个 cookie 在浏览器中可见。
前任。 response.addCookie(new Cookie("foo", "bar")); response.addCookie(new Cookie("狮子", "熊")); response.addCookie(new Cookie("猫", "狗"));
当我查看浏览器上的 cookie 时,我看到的唯一 cookie 是:“cat”、“dog”cookie 如果我切换顺序,最后一个 cookie 总是显示的(所以我不认为它是带有特定 cookie 的东西)。
Java API 表明您可以多次调用response.addCookie() 来添加任意数量的cookie。
我不确定这是否是 Sling 的特定问题(我不认为是),但可能是?
I am trying to write multiple cookies to a SlingHttpServletResponse, however only the last cookie i write is visible in the browser.
Ex.
response.addCookie(new Cookie("foo", "bar"));
response.addCookie(new Cookie("lion", "bear"));
response.addCookie(new Cookie("cat", "dog"));
When I look at the cookies on my browser, the only cookie i see is the: "cat", "dog" cookie
If i switch the order, the last cookie is always the one that displays (so i dont think its something with a specific cookie).
The Java API indicates that you can call response.addCookie() any number of times to add any number of cookies.
Im not sure if this is a Sling specific issue (i dont think it would be) but it might be?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看代码,我怀疑这是所使用的底层 servlet 容器的问题。
默认情况下,Sling 使用 Apache Felix Http Bundle 中包含的 Jetty 6 容器。
Looking at the code, I suspect this is an issue of the underlying servlet container used.
By default Sling uses the Jetty 6 Container contained in the Apache Felix Http Bundle.