Ao enviar um post, via Postman, para endpoint cadastrar, é exibido erro "org.springframework.web.HttpMediaTypeNotSupportedException: Content-Type 'text/plain;charset=UTF-8' is not supported\n\tat org.springframework.web.servlet.mvc.method.annotation.
Segue classe controller: package med.voll.api.controller;
import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController;
import med.voll.api.medico.DadosCadastroMedico;
@RestController @RequestMapping("medicos") public class MedicoController {
@PostMapping
public void cadastrar(@RequestBody DadosCadastroMedico dados) {
System.out.println(dados);
}
}