首页>代码>Hibernate基础教程的Demo代码下载>/HibernateDemo/src/main/java/com/zuidaima/util/HibernateUtil.java
package com.zuidaima.util;

import org.hibernate.SessionFactory;
import org.hibernate.cfg.AnnotationConfiguration;

public class HibernateUtil {
	
	private static final SessionFactory sessionFactory = buildSessionFactory();
	 
    private static SessionFactory buildSessionFactory() {
        try {
            return new AnnotationConfiguration().configure().buildSessionFactory();
 
        }
        catch (Throwable ex) {
            throw new ExceptionInInitializerError(ex);
        }
    }
 
    public static SessionFactory getSessionFactory() {
        return sessionFactory;
    }
 
    public static void shutdown() {
    	getSessionFactory().close();
    }
}
最近下载更多
wang9577  LV1 2021年9月9日
jackie5212  LV2 2021年3月2日
普通滴程序猿  LV1 2019年8月20日
laozhengyu  LV1 2018年9月4日
mzhh159  LV1 2018年4月18日
全球先生  LV6 2018年4月14日
xiaopixiong  LV4 2018年3月1日
xiayulin1983  LV2 2017年11月11日
SUPERABLKS  LV3 2017年11月2日
24621016193  LV2 2017年4月19日
最近浏览更多
随便取个名字_哈哈  LV27 2023年6月19日
彩色天空  LV5 2023年4月2日
周敏国  LV9 2022年10月22日
dafqrf  LV1 2021年12月8日
wang9577  LV1 2021年9月9日
淋li尽致 2021年5月25日
暂无贡献等级
jackie5212  LV2 2021年3月2日
那一年你在哪  LV13 2020年12月26日
newhaijun  LV15 2020年12月3日
名字随便的啦啦  LV7 2020年10月23日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友