Created
August 4, 2015 13:19
-
-
Save yusufcakmak/69f07f69c63b02753813 to your computer and use it in GitHub Desktop.
HibernateCRUDExample
This file contains hidden or 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
| package co.mobiwise.hibernate.util; | |
| /** | |
| * Created by yusufcakmak on 8/4/15. | |
| */ | |
| import org.hibernate.SessionFactory; | |
| import org.hibernate.cfg.Configuration; | |
| public class HibernateUtil { | |
| private static final SessionFactory sessionFactory = buildSessionFactory(); | |
| private static SessionFactory buildSessionFactory() { | |
| try { | |
| return new Configuration().configure().buildSessionFactory(); | |
| } catch (Throwable ex) { | |
| System.err.println("Initial SessionFactory creation failed." + ex); | |
| throw new ExceptionInInitializerError(ex); | |
| } | |
| } | |
| public static SessionFactory getSessionFactory() { | |
| return sessionFactory; | |
| } | |
| public static void shutdown() { | |
| getSessionFactory().close(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment