package med.voll.api.controller;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("medicos")
public class MedicoController {
@PostMapping
public void cadastrar() {
}
}
Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback.
Tue Jul 11 08:33:59 GMT-03:00 2023 There was an unexpected error (type=Method Not Allowed, status=405). Method 'GET' is not supported.
at java.base/java.lang.Thread.run(Thread.java:833)