Я получаю неподдерживаемую ошибку mediatype.
Класс моего профиля пользователя выглядит следующим образом
Class UserProfile{
private int age;
private String name,
private String currenecy;
}
И это метод в контроллере
@RequestMapping(value = "/Create", method=RequestMethod.POST,consumes=MediaType.APPLICATION_JSON_VALUE, produces=MediaType.APPLICATION_JSON_VALUE)
public ResponseEntity<UserProfileResponse> createUserProfile(@RequestBody UserProfile userProfile)
{
UserProfileResponse userProfileResponse = new UserProfileResponse();
int id = createUserProfileData(userProfile)
userProfileResponse.setId(id);
return new ResponseEntity<UserProfileResponse>(userProfileResponse,HTTPStatus.OK);
}
Я пытаюсь отправить запрос через POSTMAN, но получаю
Ошибка 415 - неподдерживаемый тип носителя
Мой запрос в POstman выглядит так
Content-Type:application/json
Accept:application/json
Method is : POST
{
"age":28,
"name":"Sam",
"currency": "INR"
}
Подскажите, что мне не хватает?