首页 > 代码库 > 2014年12月8日-configuration类以及openSession和getCurrentSession的区别
2014年12月8日-configuration类以及openSession和getCurrentSession的区别
Hibernate的configuration类:
configuration类是用来加载hibernate配置文件的,默认的是读取hibernate.cfg.xml配置文件的信息。
Configuration cfg = new Configuration().configure();//Configuration cfg = new AnnotationConfiguration().configure(); //使用annotation的加载配置文件的方法SessionFactory sf = cfg.buildSessionFactory();Session session = sf.openSession();//Session session = sf.getCurrentSession();
SessionFactory
- 用来产生和管理session
- 通常情况下每个应用只需要一个SessionFactory
- 除非要访问多个数据库的情况
- 常用的两个方法是 openSession()和getCurrentSession()
openSession每次都是建立新的Session,此方法需要close;
getCurrentSession 是从上下文找,如果有,用旧的,如果没有,就建立新的Session,
此用途是建立事务边界,此方法是事务提交后自动close;
此方法和在hibernate.cfg.xml的配置属性有关,是:
hibernate.current_Session_context_class属性,可取的值有:jta | thread | managed | custom.class
- current_Session_context_class (jta thread )(Java transaction api)!!和Java persistence api jpa别混淆了
用getCurrentSession 需要设置Session的上下文,上下文有两种,第一种是jta,第二种是thread
thread主要是从数据库建立它的事务,jta是从分布式,jta运行时需要application server的支持。
!!#!!关于多个事务
JTATransactionManager
事务有两种:一种是依赖数据库本身的简单事务,我们称之为connection事务
第二种是JTA事务
2014年12月8日-configuration类以及openSession和getCurrentSession的区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。