【发布时间】:2018-08-05 16:17:58
【问题描述】:
我们可以在 Spring MVC 请求标头中有多个内容类型吗? 我路过:
{Content-type = application/json, text/plain}
通过 Postman 到我的 API。目前,我收到org.springframework.web.HttpMediaTypeNotSupportedException: Invalid mime type ....
我想知道,我的输入值是否有问题,或者我们的标题中不能有多个内容类型。
Controller:
@RequestMapping(value = "/addressees", 产生 = APPLICATION_JSON_UTF8_VALUE, 方法 = GET)
【问题讨论】:
标签: spring rest api spring-mvc mime-types