码迷,mamicode.com
首页 > Web开发 > 详细

HibernateSessionFactory示例

时间:2015-07-13 16:20:14      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:hibernatesessionfact   hibernate.cfg.xml   

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示例

标签:hibernatesessionfact   hibernate.cfg.xml   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!