Quando tento receber o RequestBody e fazer o bind na Model ou qualquer outra Class, o servidor responde , com erro HTTP 415:
HTTP Status 415 – Unsupported Media Type Type Status Report Description The origin server is refusing to service the request because the payload is in a format not supported by this method on the target resource.
Com esse código:
@RequestMapping("/save") public String save(@RequestBody ProductModel model) { }
Porém se receber o RequestBody como String funciona:
@RequestMapping("/save") public String save(@RequestBody String body) { System.out.println(body); }
Porém o resultado vem em forma de query:
title=T%C3%83%C2%ADtulo&pages=1&desc=Descri%C3%83%C2%A7%C3%83%C2%A3o
Alguma sugestão ?
At Michael.