zoukankan      html  css  js  c++  java
  • Hibernate之openSession与getCurrentSession的区别

    openSession 与 getCurrentSession的区别
    (1)openSession 每一次获得的是一个全新的session对象,而getCurrentSession获得的是与当前线程绑定的session对象;
    (2)openSession不需要配置,而getCurrentSession需要配置

    <property name="current_session_context_class">thread</property> 

    (3)openSession需要手动关闭,而getCurrentSession系统自动关闭

    openSession出来的session要通过:session.close(),
    
    而getSessionCurrent出来的session系统自动关闭,如果自己关闭会报错

    (4)Session是线程不同步的,要保证线程安全就要使用getCurrentSession

    下面这段代码运行后可比较它们的(1)

    package cn.blog.test;
    
    import org.hibernate.Session;
    import org.hibernate.SessionFactory;
    import org.hibernate.cfg.Configuration;
    
    public class Test {
    
        
    //openSession与getCurrentSession对比
    
             public static void main(String[] args) {  
                  
                    Configuration configuration = new Configuration().configure();  
                    SessionFactory sf = configuration.buildSessionFactory();  
                      
                    Session sessionOpen1 = sf.openSession();  
                    Session sessionOpen2 = sf.openSession();  
                      
                    Session sessionThread1 = sf.getCurrentSession();  
                    Session sessionThread2 = sf.getCurrentSession();  
                      
                    System.out.println(sessionOpen1.hashCode() + "<-------->" + sessionOpen2.hashCode());  //每次创建都是新的session对象
                    System.out.println(sessionThread1.hashCode() + "<-------->" + sessionThread2.hashCode());  //每次获得的是当前session
        
    }
             
    }
  • 相关阅读:
    Do you want a timeout?
    [整]常用的几种VS编程插件
    [转]Windows的窗口刷新机制
    [整][转]Invoke和BeginInvoke的使用
    [整]C#获得程序路径
    [转]Visual Studio 2010 单元测试目录
    飞秋的实现原理
    面向对象的七大原则
    [转]玩转Google开源C++单元测试框架Google Test系列
    [转]C#中的Monitor类
  • 原文地址:https://www.cnblogs.com/youcong/p/9832352.html
Copyright © 2011-2022 走看看