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

HibernateSessionFactory演示样例

时间:2017-05-02 09:55:00      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:common   article   build   get   tor   hiberna   figure   uil   strong   

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

标签:common   article   build   get   tor   hiberna   figure   uil   strong   

原文地址:http://www.cnblogs.com/lxjshuju/p/6794477.html

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