Dựa trên câu trả lời cho vấn đề với x-www-form-urlencoded với Spring @Controller
Tôi đã viết phương thức @Controller bên dưới
@RequestMapping(value = "/{email}/authenticate", method = RequestMethod.POST
, produces = {"application/json", "application/xml"}
, consumes = {"application/x-www-form-urlencoded"}
)
public
@ResponseBody
Representation authenticate(@PathVariable("email") String anEmailAddress,
@RequestBody MultiValueMap paramMap)
throws Exception {
if(paramMap == null || paramMap.get("password") == null) {
throw new IllegalArgumentException("Password not provided");
}
}
yêu cầu không thành công với lỗi dưới đây
{
"timestamp": 1447911866786,
"status": 415,
"error": "Unsupported Media Type",
"exception": "org.springframework.web.HttpMediaTypeNotSupportedException",
"message": "Content type 'application/x-www-form-urlencoded;charset=UTF-8' not supported",
"path": "/users/usermail%40gmail.com/authenticate"
}
[Tái bút: Jersey thân thiện hơn nhiều, nhưng không thể sử dụng nó bây giờ do những hạn chế thực tế ở đây]