使用spring4.x和hibernate5.x整合,运行测试时出现如下错误:
警告: Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'transactionManager' defined in class path resource [applicationContext.xml]: Invocation of init method failed; nested exception is java.lang.NoClassDefFoundError: org/springframework/jdbc/datasource/TransactionAwareDataSourceProxy
检查了代码和jar包都没错,最后尝试了使用hibernate4,结果成功了
org.springframework.orm.hibernate4.LocalSessionFactoryBean
org.springframework.orm.hibernate4.HibernateTransactionManager
如果根据根据hibernate的版本使用5版本就不行,不知是不是跟spring版本有关?

在使用Spring4.x和Hibernate5.x进行整合时遇到NoClassDefFoundError异常,通过检查确认代码及依赖正确无误。最终发现将Hibernate版本回退到4.x时问题得以解决。

被折叠的 条评论
为什么被折叠?



