Skip to content

Instantly share code, notes, and snippets.

@yusufcakmak
Created August 4, 2015 13:19
Show Gist options
  • Select an option

  • Save yusufcakmak/69f07f69c63b02753813 to your computer and use it in GitHub Desktop.

Select an option

Save yusufcakmak/69f07f69c63b02753813 to your computer and use it in GitHub Desktop.
HibernateCRUDExample
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