如何在spring-web servlet中接受text / csv作为内容类型?

时间:2018-08-14 10:35:39

标签: java spring spring-rest spring-web

我想创建一个产生text/csv内容的简单Web服务。但我不能要求它:

@RestController
public class MyServlet {
    @PostMapping(produces = {"text/csv", "application/json"})
    public Object post() {
        //...
    }
}

spring.mvc.contentnegotiation.media-types.csv=text/csv

当我发送带有Content-Type: text/csv作为HTTP标头的发帖请求时,出现以下错误:

415:Content type 'text/csv' not supported

这是我的配置:

@Configuration
public class ContentNegotiationConfiguration implements WebMvcConfigurer {
    @Override
    public void configureContentNegotiation(ContentNegotiationConfigurer configurer) {
        configurer
                .favorParameter(true) //favor &format=csv
                .defaultContentType(MediaType.APPLICATION_JSON)
                .parameterName(format);
                //.mediaType("csv", new MediaType("text", "csv")) //also tried without success
    }
}

1 个答案:

答案 0 :(得分:3)

如果您(客户端)希望获得csv内容,则客户端应将text/csv作为Accept标头而不是Content-Type传递。