spring hibernate 5 Error Already value [org.springframework.orm.hibernate5.SessionHolder for key bound to thread
spring hibernate 5 Error Already value [org.springframework.orm.hibernate5.SessionHolder for key bound to thread
我刚刚升级到 hibernate 5 并在尝试使用 Spring Hibernate 事务管理器
getCurrentSession 时遇到以下错误
org.springframework.orm.hibernate5.HibernateTransactionManager
这是错误的完整堆栈跟踪
java.lang.IllegalStateException: Already value [org.springframework.orm.hibernate5.SessionHolder@c05f59] for key [org.hibernate.internal.SessionFactoryImpl@f0db1] bound to thread [http-bio-8080-exec-3]
at org.springframework.transaction.support.TransactionSynchronizationManager.bindResource(TransactionSynchronizationManager.java:190) ~[spring-tx-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:129) ~[spring-orm-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:692) ~[hibernate-core-5.0.2.Final.jar:5.0.2.Final]
at com.pos.core.repository.persistance.framework.impl.BaseHibernateRepository.getCurrentSession(BaseHibernateRepository.java:42) ~[Core-2.5.2-SNAPSHOT.jar:?]
at com.pos.infrastructure.security.repository.impl.LoginSessionRepositoryImpl.getLoginSessionInfo(LoginSessionRepositoryImpl.java:83) ~[Infrastructure-2.5.2-SNAPSHOT.jar:?]
at com.pos.infrastructure.authentication.services.impl.AuthenticationServiceImpl.checkLoginSessionInfo(AuthenticationServiceImpl.java:1087) ~[Infrastructure-2.5.2-SNAPSHOT.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:302) ~[spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:190) ~[spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157) ~[spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.transaction.interceptor.TransactionInterceptor.proceedWithInvocation(TransactionInterceptor.java:99) ~[spring-tx-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:281) [spring-tx-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) [spring-tx-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) [spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) [spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) [spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:207) [spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at com.sun.proxy.$Proxy168.checkLoginSessionInfo(Unknown Source) [?:?]
at com.pos.posservice.interceptors.WebServiceInterceptor.checkToken(WebServiceInterceptor.java:161) [WebServiceInterceptor.class:?]
我找到了这个问题的解决方案。我正在使用休眠 4 sf bean。
org.springframework.orm.hibernate4.LocalSessionFactoryBean
我不得不将其更改为休眠 5 sf bean 来解决问题
org.springframework.orm.hibernate5.LocalSessionFactoryBean
我在 servlet-config.xml 中使用 hibernate 4 创建了会话,但使用 hibernate 5 创建了事务管理器。当我让它们都进入休眠状态 5 时,问题就解决了
我刚刚升级到 hibernate 5 并在尝试使用 Spring Hibernate 事务管理器
getCurrentSession 时遇到以下错误org.springframework.orm.hibernate5.HibernateTransactionManager
这是错误的完整堆栈跟踪
java.lang.IllegalStateException: Already value [org.springframework.orm.hibernate5.SessionHolder@c05f59] for key [org.hibernate.internal.SessionFactoryImpl@f0db1] bound to thread [http-bio-8080-exec-3]
at org.springframework.transaction.support.TransactionSynchronizationManager.bindResource(TransactionSynchronizationManager.java:190) ~[spring-tx-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:129) ~[spring-orm-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:692) ~[hibernate-core-5.0.2.Final.jar:5.0.2.Final]
at com.pos.core.repository.persistance.framework.impl.BaseHibernateRepository.getCurrentSession(BaseHibernateRepository.java:42) ~[Core-2.5.2-SNAPSHOT.jar:?]
at com.pos.infrastructure.security.repository.impl.LoginSessionRepositoryImpl.getLoginSessionInfo(LoginSessionRepositoryImpl.java:83) ~[Infrastructure-2.5.2-SNAPSHOT.jar:?]
at com.pos.infrastructure.authentication.services.impl.AuthenticationServiceImpl.checkLoginSessionInfo(AuthenticationServiceImpl.java:1087) ~[Infrastructure-2.5.2-SNAPSHOT.jar:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_60]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_60]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_60]
at java.lang.reflect.Method.invoke(Method.java:497) ~[?:1.8.0_60]
at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:302) ~[spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:190) ~[spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157) ~[spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.transaction.interceptor.TransactionInterceptor.proceedWithInvocation(TransactionInterceptor.java:99) ~[spring-tx-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:281) [spring-tx-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) [spring-tx-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) [spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) [spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) [spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:207) [spring-aop-4.2.2.RELEASE.jar:4.2.2.RELEASE]
at com.sun.proxy.$Proxy168.checkLoginSessionInfo(Unknown Source) [?:?]
at com.pos.posservice.interceptors.WebServiceInterceptor.checkToken(WebServiceInterceptor.java:161) [WebServiceInterceptor.class:?]
我找到了这个问题的解决方案。我正在使用休眠 4 sf bean。
org.springframework.orm.hibernate4.LocalSessionFactoryBean
我不得不将其更改为休眠 5 sf bean 来解决问题
org.springframework.orm.hibernate5.LocalSessionFactoryBean
我在 servlet-config.xml 中使用 hibernate 4 创建了会话,但使用 hibernate 5 创建了事务管理器。当我让它们都进入休眠状态 5 时,问题就解决了