一:看测试
二:知识点
主要接口:
1:AnnotationConfiguration
2:SessionFactory
3: Session
注意点
1: configure可以指定Hibernate文件的路径,如果Hibernate配置文件名称是hibernate.cfg.xml,那么就不用写文件路径
2:factory.openSession();每次调用,都会创建一个新的session
3:factory.getCurrentSession();从上下文获取session,如果有不创建,如果没有才创建新的session
4:factory.openSession();需要手动close
factory.getCurrentSession();不需要close,事务提交的时候,会自动close
5:factory.getCurrentSession(); 需要在Hibernate配置文件中加入获取上下文的方式:thread是最常用的一种,从当前线程找
<property name="current_session_context_class">thread</property>
什么时候用factory.getCurrentSession()
事务处理中