Created
June 27, 2016 02:04
-
-
Save hseritt/146d89a8c8abc07ba4b02340ec9552c0 to your computer and use it in GitHub Desktop.
HibernateUtil.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.hibernate.SessionFactory; | |
import org.hibernate.cfg.Configuration; | |
public class HibernateUtil { | |
private static final SessionFactory sessionFactory = buildSessionFactory(); | |
private static SessionFactory buildSessionFactory() { | |
try { | |
// Create the SessionFactory from hibernate.cfg.xml | |
return new Configuration().configure().buildSessionFactory(); | |
} catch (Throwable ex) { | |
// Make sure you log the exception, as it might be swallowed | |
System.err.println("Initial SessionFactory creation failed." + ex); | |
throw new ExceptionInInitializerError(ex); | |
} | |
} | |
public static SessionFactory getSessionFactory() { | |
return sessionFactory; | |
} | |
public static void shutdown() { | |
// Close caches and connection pools | |
getSessionFactory().close(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment