hibernate常见问题?
Posted smileApe
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hibernate常见问题?相关的知识,希望对你有一定的参考价值。
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常见问题?的主要内容,如果未能解决你的问题,请参考以下文章