gpt4 book ai didi

xml - 如何选择应用程序/XML 或文本/XML 作为媒体类型?

转载 作者:数据小太阳 更新时间:2023-10-29 02:07:47 24 4
gpt4 key购买 nike

我一直在学习jax-rs。我的问题是我不知道如何选择应用程序/XML 或文本/XML,即使我在 Internet 上阅读了更多关于它们的文章。任何人都可以像应用程序/XML 支持和不支持一样简单地描述它吗?为什么我应该使用文本/XML?

最佳答案

text/xml 媒体类型是application/xml 媒体类型的别名

检查 RFC 7303详情:

9.1. application/xml Registration

Type name: application

Subtype name: xml

[...]

9.2. text/xml Registration

The registration information for text/xml is in all respects the sameas that given for application/xml above (Section 9.1), except thatthe "Type name" is "text".

在 JAX-RS 中,您可以使用以下内容来支持这两者:

@GET
@Produces({ MediaType.APPLICATION_XML, MediaType.TEXT_XML })
public Response foo() {
...
}

关于xml - 如何选择应用程序/XML 或文本/XML 作为媒体类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44842217/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com