Eso te pasa porque en este metodo:
Código Java:
Ver originalprivate static SessionFactory buildSessionFactory() {
try {
// Create the SessionFactory from standard (hibernate.cfg.xml)
// config file.
//return new Configuration().configure().buildSessionFactory();
sessionFactory = new Configuration().configure().buildSessionFactory();
// Log the exception.
System.
err.
println("Initial SessionFactory creation failed." + ex
); }
return null;
}
Estas devolviendo SIEMPRE null en lugar del factory.
Un saludo