你可以配置 Spring MVC 如何从请求中确定所请求的媒体类型(例如,Accept 头、URL 路径扩展、查询参数和其他)。
默认情况下,只有 Accept 头被选中。
如果你必须使用基于 URL 的内容类型解析,考虑使用查询参数策略而不是路径扩展。参见 后缀匹配 和 后缀匹配与 RFD,以了解更多细节。
在 Java 配置中,你可以自定义请求的内容类型解析,如下例所示:
@Configuration
@EnableWebMvc
public class WebConfig implements WebMvcConfigurer {
@Override
public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
configurer.mediaType("json", MediaType.APPLICATION_JSON);
configurer.mediaType("xml", MediaType.APPLICATION_XML);
}
}
下面的例子显示了如何在 XML 中实现同样的配置:
<mvc:annotation-driven content-negotiation-manager="contentNegotiationManager"/>
<bean id="contentNegotiationManager" class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">
<property name="mediaTypes">
<value>
json=application/json
xml=application/xml
</value>
</property>
</bean>