⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hibernatesessionfactory.java

📁 该车间信息管理系统
💻 JAVA
字号:
package com.briup.common;import org.hibernate.HibernateException;import org.hibernate.Session;import org.hibernate.cfg.Configuration;public class HibernateSessionFactory {	private static String CONFIG_FILE_LOCATION = "/hibernate.cfg.xml";	private static final ThreadLocal<Session> threadLocal = new ThreadLocal<Session>();	private static final Configuration cfg = new Configuration();	private static org.hibernate.SessionFactory sessionFactory;		public static Session getSession() throws HibernateException {		Session session = (Session)threadLocal.get();		if(session == null || !session.isOpen()) {			if(sessionFactory == null) {				try {					cfg.configure(CONFIG_FILE_LOCATION);					sessionFactory = cfg.buildSessionFactory();				}catch(Exception e) {					System.err.println("%%%% Error Creating SessionFactory %%%%");					e.printStackTrace();				}			}			session = (sessionFactory != null) ? sessionFactory.openSession() : null;			threadLocal.set(session);		}		return session;	}		public static void closeSession() throws HibernateException {		Session session = (Session) threadLocal.get();		threadLocal.set(null);		if(session != null) {			session.close();		}	}		private HibernateSessionFactory() {}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -