将多个 cookie 写入 Java HTTP 响应 (HttpSlingServletResponse) 不起作用

发布于 2024-11-16 07:21:39 字数 441 浏览 5 评论 0原文

我正在尝试将多个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

清浅ˋ旧时光 2024-11-23 07:21:39

查看代码,我怀疑这是所使用的底层 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文