Ver Mensaje Individual
  #6 (permalink)  
Antiguo 24/11/2015, 02:36
Avatar de Profesor_Falken
Profesor_Falken
 
Fecha de Ingreso: agosto-2014
Ubicación: Mountain View
Mensajes: 1.323
Antigüedad: 10 años, 5 meses
Puntos: 182
Respuesta: Error en Java Netbeans Hibernate, NullPointerException

Eso te pasa porque en este metodo:

Código Java:
Ver original
  1. private static SessionFactory buildSessionFactory() {
  2.         try {
  3.             // Create the SessionFactory from standard (hibernate.cfg.xml)
  4.             // config file.
  5.            
  6.             //return new Configuration().configure().buildSessionFactory();
  7.            
  8.             sessionFactory = new Configuration().configure().buildSessionFactory();
  9.            
  10.         } catch (Throwable ex) {
  11.             // Log the exception.
  12.             System.err.println("Initial SessionFactory creation failed." + ex);
  13.             throw new ExceptionInInitializerError(ex);
  14.         }
  15.         return null;
  16.     }

Estas devolviendo SIEMPRE null en lugar del factory.

Un saludo
__________________
If to err is human, then programmers are the most human of us