0

向我发布XML对象时,我无法获得路径扩展视图分辨率以启动,但出现错误Foo/foo.xml

不支持的内容类型:文本/纯文本

这是没有发布任何Content-Type标题的结果。但favorPathExtention应该消除这种需要。知道为什么不这样做吗?


控制器

@RequestMapping(value="/foo.xml", method=ADD, produces="application/xml")
@ResponseStatus(HttpStatus.OK)
public @ResponseBody Foo add(@RequestBody Foo foo)  {
    return foo;
}

配置

@Configuration
@ComponentScan(basePackages="my.pkg.controller")
public class RestWebConfig extends WebMvcConfigurationSupport {

    @Override
    protected void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
        converters.add(new MarshallingHttpMessageConverter(...));
        converters.add(new MappingJackson2HttpMessageConverter());
    }

    @Override
    protected void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
        configurer.favorPathExtension(true)
            .ignoreAcceptHeader(true)
            .useJaf(false)
            .mediaType("json", MediaType.APPLICATION_JSON)
            .mediaType("xml", MediaType.APPLICATION_XML);
    }
}
4

2 回答 2

1

我认为您误解了内容协商的目的。

内容协商是关于如何生成响应,而不是如何解析请求。

你得到

不支持的内容类型:文本/纯文本

因为,使用@RequestBody,没有注册HttpMessageConverter实例可以读取默认请求内容类型application/octet-stream(或者您的客户端可能使用text/plain)。这一切都发生在RequestResponseBodyMethodProcessor为带有注释的参数生成参数的 which 句柄中@RequestBody

如果要在请求正文中发送 XML 或 JSON,请将Content-Type.


至于内容协商,使用您的配置和请求,DispatcherServlet将尝试生成带有 content type 的响应application/xml。因为@ResponseBody,您将需要一个HttpMessageConverter能够制作此类内容的人。你的MarshallingHttpMessageConverter应该够了。如果不是,您可以自己编写。

于 2013-10-17T04:10:08.137 回答
0

我通过将text/plain支持的媒体类型添加到消息转换器来解决问题,例如

@Override
protected void configureMessageConverters(List<HttpMessageConverter<?>> converters) {
    MappingJackson2HttpMessageConverter jsonConverter = new MappingJackson2HttpMessageConverter();
    List<MediaType> jsonTypes = new ArrayList<>(jsonConverter.getSupportedMediaTypes());
    jsonTypes.add(MediaType.TEXT_PLAIN);
    jsonConverter.setSupportedMediaTypes(jsonTypes);
    converters.add(jsonConverter);
}
于 2013-10-21T22:52:36.600 回答