Posts by João Carlos • 36 points
2 posts
-
0
votes2
answers90
viewsA: Problem Handling a list of Objects in jsp
I see that in the controller your list receives the objects but in jsp it arrives empty. Check if you are calling the jstl taglib in jsp. <%@taglib uri="http://java.sun.com/jsp/jstl/core"…
-
2
votes1
answer1391
viewsA: How do I login?
Search the bank for someone with the login and password entered. Example: public Usuario pesquisaUsuarioLogin(String login, String senha) { Usuario usuario = new Usuario (); usuario.setLogin(login);…