【发布时间】:2016-04-19 07:58:55
【问题描述】:
我是 spring 的新手,目前我正在尝试执行 HTTP POST 请求应用程序/x-www-form-url 编码,但是当我将其保留在我的标头中时,spring 无法识别它并说 415 Unsupported Media Type
为x-www-form-urlencoded
org.springframework.web.HttpMediaTypeNotSupportedException:内容 类型 'application/x-www-form-urlencoded' 不支持
有人知道怎么解决吗?请给我评论。
我的控制器的一个例子是:
@RequestMapping(
value = "/patientdetails",
method = RequestMethod.POST,
headers="Accept=application/x-www-form-urlencoded")
public @ResponseBody List<PatientProfileDto> getPatientDetails(
@RequestBody PatientProfileDto name
) {
List<PatientProfileDto> list = new ArrayList<PatientProfileDto>();
list = service.getPatient(name);
return list;
}
【问题讨论】:
标签: java jquery spring rest spring-mvc