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就自动关闭,不能够再进行关闭:
相关推荐
solarspot 2020-07-28
houmenghu 2020-11-17
思君夜未眠 2020-08-25
阳光之吻 2020-08-03
mbcsdn 2020-06-05
我心似明月 2020-11-09
oraclemch 2020-11-06
ltd00 2020-09-12
康慧欣 2020-09-10
waveclouds 2020-09-04
蓝色深海 2020-09-15
jincheng 2020-09-01
取个好名字真难 2020-08-06
歆萌 2020-08-03
婷婷小屋 2020-07-28
MLXY 2020-07-26
dxbjfu0 2020-07-26
songbinxu 2020-07-19