4

我正在尝试使用休眠将 Web 应用程序部署到 Jboss 4.3.2.GA,但我收到以下错误。

Invocation of init method failed; nested exception is
org.hibernate.AnnotationException:
java.lang.NoSuchMethodException:
org.hibernate.validator.ClassValidator.<init>(
   java.lang.Class,
   java.util.ResourceBundle,
   org.hibernate.validator.MessageInterpolator,
   java.util.Map,
   org.hibernate.annotations.common.reflection.ReflectionManager)

我在 /WEB-INF 中有一个“jboss-web.xml”作为

<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
    <loader-repository>
    <loader-repository-config>
    java2ParentDelegation=false
    </loader-repository-config>
    </loader-repository> 
 </jboss-web>

但我仍然有同样的错误

4

2 回答 2

3

我添加了以下依赖项,我的问题得到了解决。感谢 Hibernate 的人,他们为我们提供了一个遗留验证器。

    <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-validator-legacy</artifactId>
        <version>4.0.2.GA</version>
        <exclusions>
            <exclusion>
                <artifactId>hibernate-commons-annotations</artifactId>
                <groupId>org.hibernate</groupId>
            </exclusion>
        </exclusions>
    </dependency>
于 2011-07-30T10:40:04.513 回答
1

长话短说。您不能在 JBoss 4.2.3 中使用最新的 Hibernate 版本(3.5+),因为 Hibernate 依赖项和 4.2.3 中的 EJB JAR 之间存在干扰。您有 3 个选择:

  • 使用 4.2.3 附带的 Hibernate,并且不干扰 EJB JAR
  • 使用没有 Hibernate 的早期版本的 JBoss(如 4.0.2)
  • 使用具有更新版本 Hibernate 的更新版本的 JBoss
于 2011-07-29T18:27:24.553 回答