hibernate中获取session对象的两种方式

两种方法:

(1)openSession:

无需配置在代码中可以直接使用。

(2)getCurrentSession:

如果使用getCurrentSession获取session对象需要在hibernate.cfg.xml中进行配置:

配置1:如果是本地事物(jdbc)

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

配置2:如果是全局事物(jta事物)

<property name="hibernate.current_session_context_class">jta</property>


区别:

(1)getCurrentSession在事物提交或者回滚之后会自动关闭,openSession需要你收到关闭,如果使用openSession没有手动关闭,很有可能会导致连接池益处,导致程序出现异常。

(2)openSession每次创建一个新的session对象而getCurrentSession则使用现有的session对象

演示代码:

 public void testopenSession() {
//获得配置对象
Configuration config=new Configuration().configure();
//获得服务注册对象

ServiceRegistry 

               serviceRegistry=new  ServiceRegistryBuilder().applySettings(config.getProperties()).buildServiceRegistry();

//获得sessionFactory对象
SessionFactory sessionFactory=config.buildSessionFactory(serviceRegistry);
//获得session对象
Session session1=sessionFactory.openSession();
Session session2=sessionFactory.getCurrentSession();
if(session1==session2) {
System.out.println("两个session是同一个对象");
}
else {
System.out.println("两个session不是同一个对象");
}
}

结果:



代码2:
Session session1=sessionFactory.getCurrentSession();
Session session2=sessionFactory.getCurrentSession();
if(session1==session2) {
System.out.println("两个session是同一个对象");
}
else {
System.out.println("两个session不是同一个对象");
}


结果:



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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值