Hibernate(八)--session的两种获取方式

2020-01-30 16:01:06来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

Hibernate(八)--session的两种获取方式


openSession
getCurrentSession

Hibernate有两种方式获得session,分别是:
  openSession和getCurrentSession
他们的区别在于
1. 获取的是否是同一个session对象
  openSession每次都会得到一个新的Session对象
  getCurrentSession在同一个线程中,每次都是获取相同的Session对象,但是在不同的线程中获取的是不同的Session对象

 

      SessionFactory factory=new Configuration().configure().buildSessionFactory();

        Session session = factory.openSession();
        Session session1= factory.openSession();
        System.out.println(session==session1);


同一线程:主线程(true) Session session2 = factory.getCurrentSession(); Session session3= factory.getCurrentSession(); System.out.println(session2==session3);

 

 

不同线程: (false)

public class Test {
    static Session s1;
    static Session s2;

    public static void main(String[] args) throws InterruptedException {

        final SessionFactory sf = new Configuration().configure().buildSessionFactory();

        Thread t1 = new Thread() {
            public void run() {
                s1 = sf.getCurrentSession();
            }
        };
        t1.start();

        Thread t2 = new Thread() {
            public void run() {
                s2 = sf.getCurrentSession();
            }
        };
        t2.start();
        t1.join();
        t2.join();

        System.out.println(s1 == s2);
    }
}

 


 

2. 事务提交的必要性
  openSession只有在增加,删除,修改的时候需要事务,查询时不需要的(get方法)
  getCurrentSession是所有操作都必须放在事务中进行,并且提交事务后,session就自动关闭,不能够再进行关闭

 

 

 

 

 提交事务后,session就自动关闭,不能够再进行关闭:

 

 

 


原文链接:https://www.cnblogs.com/crazy-lc/p/12242440.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Caused by: java.lang.NoClassDefFoundError: org/apache/common

下一篇:简单看看LongAccumulator