首页 > Web开发 > 详细

HibernateSessionFactory示例

时间:2015-07-13 16:17:07      阅读:247      评论:0      收藏:0      [点我收藏+]
package common;

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

public class HibernateSessionFactory {
    private static Configuration cfg;
    private static SessionFactory sessionFactory;
    
    private HibernateSessionFactory() {}
    
    static {
        try {
            cfg = new Configuration().configure();
            sessionFactory = cfg.buildSessionFactory();
        } catch (HibernateException e) {
            // 做日志
            throw new RuntimeException("hibernate初始化错误", e);
        }
    }
    
    public static Session getSession() {
        return sessionFactory.getCurrentSession();
//        return sessionFactory.openSession();
    }
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

HibernateSessionFactory示例

原文:http://blog.csdn.net/han_ying_ying/article/details/46861879

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!