I managed to solve the problem, in Servlet stayed this way: int id_moto = Integer.valueOf(request.getParameter("id_moto")); System.out.println("Você clicou no botão editar, id da moto: " + id_moto);…
Hello. I’m developing a system where the user clicks on an edit button and then opens the editing page with the attributes of the already filled object in the text boxes. In my Servlet, I am using…