hibernate4事务+Session管理

/*
 * @author : TF-BJ-C064
 * @creation : 2014-7-23 下午3:57:39
 * @description : 
 *
 */

package com.base;

import org.hibernate.HibernateException;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class HibernateUtil {
	private static String CONFIG_FILE_LOCATION = "/hibernate.cfg.xml";  
	private static final ThreadLocal localSession = new ThreadLocal();  
	private static final ThreadLocal localTransaction = new ThreadLocal();  
	private  static Configuration configuration = new Configuration();  
	private static SessionFactory sessionFactory;  
	private static String configFile = CONFIG_FILE_LOCATION;  

	static {  
		try {  
			//方式一
//			configuration.configure(configFile);
//			sessionFactory = configuration.buildSessionFactory();  

			//方式二
			String[] configLocations = new String[] {"classpath:applicationContext.xml"}; 
			ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext(configLocations); 
			sessionFactory =  ctx.getBean("sessionFactory", SessionFactory.class);

		} catch (Exception e) {  
			System.err.println("%%%% Error Creating SessionFactory %%%%");  
			e.printStackTrace();  
		}  
	}  
	private HibernateUtil() {  
	}  

	/** 
	 * Returns the ThreadLocal Session instance.  Lazy initialize 
	 * the <code>SessionFactory</code> if needed. 
	 * 
	 *  @return Session 
	 *  @throws HibernateException 
	 */  
	public static Session getSession() throws HibernateException {  
		Session session = (Session) localSession.get();  

		if (session == null || !session.isOpen()) {  
			if (sessionFactory == null) {  
				rebuildSessionFactory();  
			}  
			session = (sessionFactory != null) ? sessionFactory.openSession()  
					: null;  
			localSession.set(session);  
		}  

		return session;  
	}  

	/** 
	 *  Rebuild hibernate session factory 
	 * 
	 */  
	public static void rebuildSessionFactory() {  
		try {  
			//方式一
//			configuration.configure(configFile);  
//			sessionFactory = configuration.buildSessionFactory();  

			//方式二
			String[] configLocations = new String[] {"classpath:applicationContext.xml"}; 
			ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext(configLocations); 
			sessionFactory =  ctx.getBean("sessionFactory", SessionFactory.class);

		} catch (Exception e) {  
			System.err.println("%%%% Error Creating SessionFactory %%%%");  
			e.printStackTrace();  
		}  
	}  

	/** 
	 *  Close the single hibernate session instance. 
	 * 
	 *  @throws HibernateException 
	 */  
	public static void closeSession() throws HibernateException {  
		Session session = (Session) localSession.get();  
		localSession.set(null);  

		if (session != null && session.isOpen()) {  
			session.close();  
		}  
	}  

	/** 
	 *  return session factory 
	 * 
	 */  
	public static SessionFactory getSessionFactory() {  
		return sessionFactory;  
	}  

	/** 
	 *  return session factory 
	 * 
	 *  session factory will be rebuilded in the next call 
	 */  
	public static void setConfigFile(String configFile) {  
		HibernateUtil.configFile = configFile;  
		sessionFactory = null;  
	}  

	/** 
	 *  return hibernate configuration 
	 * 
	 */  
	public static Configuration getConfiguration() {  
		return configuration;  
	}  

	/** 
	 * 开始当前线程中Hibernate Session的事务 
	 * @return Transaction 
	 * @throws HibernateException 
	 */  
	public static Transaction beginTransaction() throws HibernateException {  
		Transaction tx = (Transaction)localTransaction.get();  
		if(tx == null || tx.wasCommitted() || tx.wasRolledBack()){  
			Session session = getSession();   
			tx = (session != null) ? session.beginTransaction() : null;  
			localTransaction.set(tx);  
		}  

		return tx;  
	}  

	/** 
	 * 提交当前线程中Hibernate Session的事务 
	 * @throws HibernateException 
	 */  
	public static void commitTransaction() throws HibernateException {  
		Transaction tx = (Transaction)localTransaction.get();  
		localTransaction.set(null);  
		if(tx != null || (!tx.wasCommitted() && !tx.wasRolledBack())){  
			tx.commit();  
		}  
	}  
	/** 
	 * 回滚当前线程中Hibernate Session的事务 
	 * @throws HibernateException 
	 */  
	public static void rollbackTransaction() throws HibernateException {  
		Transaction tx = (Transaction)localTransaction.get();  
		localTransaction.set(null);  
		if(tx != null || (!tx.wasCommitted() && !tx.wasRolledBack())){  
			tx.rollback();  

		}  
	}  

	/** 
	 * 当前Hibernate Session是否打开 
	 * @return 
	 */  
	public static boolean isOpenSession() {  
		Session session = (Session) localSession.get();  
		if (session != null && session.isOpen()) {  
			return true;  
		}  
		return false;  
	}  
}




  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值