こんにちは、Restクライアント、つまりPostmanを使用してRESTリクエストを送信していますが、エラーが発生しています:
{
"timestamp": 1432829209385,
"status": 415,
"error": "Unsupported Media Type",
"exception": "org.springframework.web.HttpMediaTypeNotSupportedException",
"message": "Content type 'text/plain;charset=UTF-8' not supported",
"path": "/api/v1/user"
}
私のコントローラーは:
@RequestMapping(value = "/user", method = RequestMethod.PUT, produces = "application/json")
public Map<String,Object> updateUser(@RequestBody @Valid User user) {
// userService.updateUser(user);
return ResponseHandler.generateResponse("", HttpStatus.ACCEPTED, false, null);
}
REST client。
PostmanのContent-Type
をapplication/json
に変更します。 Headersボタンをクリックしてください。
また、メソッドでjsonを生成していません。注釈からproduces="application/json"
を削除します