我已经配置 spring 来为我们的 API 解析 xml 和 json 响应,如下所示:
<!-- oxm integration -->
<bean id="objectXmlMarshaller" class="org.springframework.oxm.xstream.XStreamMarshaller" />
<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<property name="ignoreAcceptHeader" value="false" />
<property name="favorPathExtension" value="true" />
<property name="mediaTypes">
<map>
<entry key="xml" value="application/xml" />
<entry key="json" value="application/json" />
</map>
</property>
<property name="defaultViews">
<list>
<bean class="org.springframework.web.servlet.view.json.MappingJacksonJsonView" />
<bean class="org.springframework.web.servlet.view.xml.MarshallingView">
<property name="marshaller" ref="objectXmlMarshaller" />
</bean>
</list>
</property>
</bean>
不幸的是,spring 使用 application/*+xml 返回 xml 响应。似乎 chrome 无法打开此类扩展并将其发送到 windows 以打开它们(因此,我必须通过 windows 打开它,而不是在浏览器上看到响应)。
有谁知道为什么它返回 application/*+xml 而不是配置的 application/xml?
如果没有,有谁知道如何强制 chrome 显示它?
谢谢!