When trying to call a Controller method it is returning the following error:
HTTP Status 400 - Bad Request Type Status Report
Description The server can not process the request due something that is perceived to be a client error (e.g., malformed request syntax, invalid request message framing, or deceptive request routing).
Apache Tomcat / 8.0.53
Controller:
@Controller
public class ManterFuncionarioController {
@RequestMapping("CriarFuncionario")
public String criarFuncionario(Model model, Funcionario funcionario, Usuario usuario, BindingResult result){
///METODO///
}
}
I'm using JSP
I searched for solutions on other topics, but none resolved.