hibernate4.3获取session的方法

来源:互联网 发布:金山软件股价 编辑:程序博客网 时间:2024/06/06 20:46

转自:  http://blog.csdn.net/zys_hh/article/details/20715561


[java] view plain copy
  1. package util;  
  2.   
  3. import org.hibernate.Session;  
  4. import org.hibernate.SessionFactory;  
  5. import org.hibernate.boot.registry.StandardServiceRegistryBuilder;  
  6. import org.hibernate.cfg.Configuration;  
  7. import org.hibernate.service.ServiceRegistry;  
  8.   
  9. public class HiberUtil {  
  10.   
  11.     static Configuration cfg;  
  12.     static ServiceRegistry serviceRegistry;  
  13.     static SessionFactory sessionFactory;  
  14.       
  15.     static{  
  16.         //创建Configuration对象  调用.configure()方法 ,默认class/hibernate.cfg.xml  
  17.         cfg = new Configuration().configure();  
  18.         //创建服务对象  
  19.         serviceRegistry = new StandardServiceRegistryBuilder().applySettings(cfg.getProperties()).build();  
  20.         //创建sessionFactory工厂  
  21.         sessionFactory = cfg.buildSessionFactory(serviceRegistry);  
  22.     }  
  23.     /** 
  24.      * 获取session对象 
  25.      * @return 
  26.      */  
  27.     //注意:在使用openSession()方法获取session后。用完session后要session.close()  
  28.     public static Session openSession(){  
  29.         //返回session对象   
  30.         return sessionFactory.openSession();  
  31.     }  
  32.     /** 
  33.      * 获取session对象 
  34.      * @return 
  35.      */  
  36.     //注意:在使用getCurrentSession()方法获取session后。用完session后session自动关闭  
  37.     public static Session getCurrentSession(){  
  38.         //返回session对象   
  39.         return sessionFactory.getCurrentSession();  
  40.     }  
  41.       
  42. }  

getCurrentSessionopenSession的区别

getCurrentSession创建的session会和绑定到当前线程,而openSession不会。

getCurrentSession创建的线程会在事务回滚或事物提交后自动关闭,而openSession必须手动关闭

getCurrentSession()   使用当前的session
openSession()          重新建立一个新的session


使用getCurrentSession()时 要在hibernate.cfg.xml文件中进行如下设置

如果使用的是本地事务(jdbc事务)
<property name="hibernate.current_session_context_class">thread</property>
如果使用的是全局事务(jta事务)
<property name="hibernate.current_session_context_class">jta</property>