1. 程式人生 > >hibernate常見問題?

hibernate常見問題?

save 當前 val etc factory hibernate 結果 bsp spa

1、

  <bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">

  hibernate4版本<prop key="hibernate.current_session_context_class">thread</prop>---》獲取當前會話會導致如下結果:

  異常信息:org.hibernate.HibernateException: save is not valid without active transaction

  hibernatenate4版本,取消<prop key="hibernate.current_session_context_class">thread</prop>會導致如下結果:

  異常信息: Already value [[email protected]] for key

  [[email protected]]  bound to thread [main]

  

  解決:將hibernate版本改為hibernate5版本,hibernate可以直接使用getCurrentSession獲取當前會話!

hibernate常見問題?