泽西岛的 Response.getMetaData().get(“location”):为什么它返回一个列表?

发布于 2025-01-08 21:25:16 字数 262 浏览 0 评论 0原文

在我的服务中,我正在执行以下行:

return Response.created("someuri").build();

然后在我的客户端中,为了获取我必须执行的位置

response.getMetaData().get("location").get(0);

这一切都很好,但我想知道为什么它会作为列表返回,而不仅仅是 URI。球衣专家可以帮我吗?

谢谢!

In my service I am executing the following line:

return Response.created("someuri").build();

Then in my client in order to get the location I have to do

response.getMetaData().get("location").get(0);

This is all good and well, but I am wondering why on earth that is returned as a List instead of just a URI. Can a jersey expert help me out here?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

一瞬间的火花 2025-01-15 21:25:16

getMetaData() 返回 HTTP 响应中的标头映射,虽然大多数时候我们期望每个键只有一个值,但 HTTP 协议按照逐行列出标头的方式,没有强制要求标头名称必须是唯一的,因此 API 在其 MultivaluedMap 中反映了这一点。
此外,虽然我们期望“Location”有一个唯一的值,但其他类型的标头(例如“Set-Cookie”)也有多个值的有效用例。

getMetaData() returns a map of Headers in the HTTP response, and while we'd expect only one value per key most of the time, the way the HTTP protocol lists Headers line by line, there is no enforcement that header names have to be unique, so the API reflects that in its MultivaluedMap.
Moreover while we'd expect a unique value for "Location", there are valid use cases for having multiple values for other types of headers such as "Set-Cookie".

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