Когда я передаю тело, бэкэнд возвращает мне этот ответ:
Код: Выделить всё
{
"status": 415,
"error": "Unsupported Media Type",
"trace": "org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/json;charset=UTF-8' not supported",
"message": "Content type 'application/json;charset=UTF-8' not supported",
"path": "/path/to/endpoint"
}
Код: Выделить всё
@PostMapping("/path/to/endpoint")
public ResponseEntity saveObj(@RequestBody Object obj) {
objService.save(obj);
return ResponseEntity.ok().body("Saved!");
}
Подробнее здесь: https://stackoverflow.com/questions/787 ... ostmapping
Мобильная версия