0
When trying to call a Controller method this returns the error below:
HTTP Status 400 - Bad Request Type Status Report
Description The server cannot or will not process the request due to 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 am using JSP
I looked for solutions on other topics, but none solved.
I decided to remove some parameters from my Controller method, probably some error in mapping from JSP to Controller that is incorrect.
– Kennedy Anderson