Hibernate辅助类(官方推荐)

来源:互联网 发布:淘宝盈利模式 编辑:程序博客网 时间:2024/05/30 13:43
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;     }}