Login con Hibernate


/ Published in: Java
Save to your folder(s)



Copy this code and paste it in your HTML
  1. public boolean validarUsuario(String usuario, String clave) {
  2. boolean hecho = false;
  3. Usuario user = null;
  4. String sentencia = "from Usuario where usuario='" + usuario
  5. + "' and clave='" + clave + "'";
  6. try {
  7.  
  8. operacion = ayudar.beginTransaction();
  9. List<Usuario> listaUsuarios = (List<Usuario>) ayudar.createQuery(sentencia).list();
  10. if (!listaUsuarios.isEmpty()) {
  11. user = listaUsuarios.get(0);
  12. hecho = true;
  13. } else {
  14. System.out.println("fracaso");
  15. }
  16.  
  17. } catch (Exception e) {
  18. System.out.println("error");
  19. }
  20. return hecho;
  21. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.