gpt4 book ai didi

java - 如何使用Jboss7设置hibernate3?

转载 作者:行者123 更新时间:2023-11-30 03:30:06 25 4
gpt4 key购买 nike

我正在尝试设置 Spring MVC + Hibernate WAR 以部署到 Jboss 7.1.1 Final。我的应用程序使用 Hibernate 3.6.1 & 到目前为止,我的理解是 Hibernate 4 与 AS 打包在一起,并且是默认的持久性提供程序。我没有使用 persist.xml 文件配置。

我已经提供了所有必需的 java,但我仍然遇到以下异常,任何人都可以帮助我在 JBoss 中设置与 hibernate 3 相关的更改吗?

03:14,597 ERROR [org.springframework.web.context.ContextLoader] (MSC service thread 1-3)  
Context initialization failed:
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'hibernateVendor' defined in ServletContext resource [/WEB-INF/hibernate-context.xml]:
Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException:
Could not instantiate bean class [org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter]:
Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/hibernate/ejb/HibernatePersistence

最佳答案

由于您收到 java.lang.NoClassDefFoundError (而不是 ClassNotFoundException),因此可能是某种类加载问题。

尝试添加 hibernate-entitymanager 依赖项来解决您的问题。

<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>${hibernate.version}</version>
<exclusions>
<exclusion>
<groupId>cglib</groupId>
<artifactId>cglib</artifactId>
</exclusion>
<exclusion>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</exclusion>
</exclusions>
</dependency>

关于java - 如何使用Jboss7设置hibernate3?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29250311/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com