标签:
在集成Hibernate的环境下(例如Jboss),要在hibernate.cfg.xml中session-factory段加入:
1 <property name="current_session_context_class">jta</property>
在不集成Hibernate的环境下(例如使用JDBC的独立应用程序),在hibernate.cfg.xml中session-factory段加入:
1 <property name="current_session_context_class">thread</property>
对于annotation方式,找不到实体类,一般是忘记加@Entity,或者是忘记在hibernate.cfg.xml中加入映射字段。
标签:
原文地址:http://www.cnblogs.com/Mokaffe/p/4176684.html