HibernateUtil

来源:互联网 发布:绝地求生罗技g502编程 编辑:程序博客网 时间:2024/05/18 17:27

package com.test;

import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class HibernateUtil {

  private static final SessionFactory sessionFactory;
  static {
         try {
             // Create the SessionFactory from hibernate.cfg.xml
             sessionFactory = 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;
     }
}

原创粉丝点击