2

Hibernate-CoreおよびEntityManager3.6.6-FINAL、hibernate-commons-annotations-3.2.0.Final、hibernate-jpa-2.0-api-1.0.1.Finalおよびhibernate-validatorでhibernate3-maven-pluginを正常に使用しました。最近の-4.0.0.GA。私はこのプラグインを介してDDLを生成していました。プロジェクトは永続化のためにJPAを使用しました。したがって、その目標はJPA構成を使用し、うまく機能しました。

ここで、同じバージョンのhibernate-coreを使用してhbm2cfgxmlとhbm2javaを実装すると、hibernateアノテーション3.5.6-FINAL(私が除外した依存関係としてhibernate-core 3.5.6-FINALを使用)およびhibernatecommonsアノテーション3.2.0.Final; IncompatibleClassChangeErrorが発生します。私のプラグイン構成:

<plugins>
  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>hibernate3-maven-plugin</artifactId>
    <version>2.2</version>
    <executions>
      <execution>
        <id>hbm2cfgxml</id>
        <phase>generate-resources</phase>
        <goals>
          <goal>hbm2cfgxml</goal>
        </goals>
        <configuration>
          <components>
            <component>
              <name>hbm2cfgxml</name>
              <implementation>jdbcconfiguration</implementation>
            </component>
          </components>
          <componentProperties>
            <ejb3>true</ejb3>
            <packagename>foo.bar</packagename>
          </componentProperties>
        </configuration>
      </execution>
      <execution>
        <id>hbm2java</id>
        <phase>generate-sources</phase>
        <goals>
          <goal>hbm2java</goal>
        </goals>
        <configuration>
          <components>
            <component>
              <name>hbm2java</name>
              <implementation>annotationconfiguration</implementation>
            </component>
          </components>
          <componentProperties>
            <ejb3>true</ejb3>
            <packagename>foo.bar</packagename>
            <configurationfile>target/hibernate3/generated-mappings/hibernate.cfg.xml</configurationfile>
          </componentProperties>
        </configuration>
      </execution>
    </executions>
    <dependencies>
      <dependency>
        <groupId>mysql</groupId>
        <artifactId>mysql-connector-java</artifactId>
        <version>5.1.16</version>
      </dependency>
      <dependency>
        <groupId>javax.validation</groupId>
        <artifactId>validation-api</artifactId>
        <version>1.0.0.GA</version>
      </dependency>
      <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-validator</artifactId>
        <version>4.0.0.GA</version>
      </dependency>
      <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-entitymanager</artifactId>
        <version>3.6.6.Final</version>
      </dependency>
      <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-core</artifactId>
        <version>3.6.6.Final</version>
      </dependency>
      <dependency>
        <groupId>org.hibernate.javax.persistence</groupId>
        <artifactId>hibernate-jpa-2.0-api</artifactId>
        <version>1.0.1.Final</version>
      </dependency>
      <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-c3p0</artifactId>
        <version>3.6.6.Final</version>
        <exclusions>
          <exclusion>
            <artifactId>slf4j-api</artifactId>
            <groupId>org.slf4j</groupId>
          </exclusion>
        </exclusions>
      </dependency>
      <dependency>
        <groupId>org.hibernate</groupId>
        <artifactId>hibernate-annotations</artifactId>
        <version>3.5.6-Final</version>
        <type>jar</type>
        <scope>compile</scope>
        <exclusions>
          <exclusion>
            <groupId>org.hibernate</groupId>
            <artifactId>hibernate-core</artifactId>
          </exclusion>
        </exclusions>
      </dependency>
    </dependencies>
  </plugin>
</plugins>

そしてエラー:

[エラー]プロジェクトdss-domainでゴールorg.codehaus.mojo:hibernate3-maven-plugin:2.2:hbm2cfgxml(hbm2cfgxml)を実行できませんでした:ゴールorg.codehaus.mojo:hibernate3-maven-plugin:2.2:hbm2cfgxmlの実行hbm2cfgxml失敗:org.codehaus.mojo:hibernate3-maven-plugin:2.2:hbm2cfgxmlの実行中にAPIの非互換性が発生しました:java.lang.IncompatibleClassChangeError:インターフェースorg.hibernate.cfg.Mappingsが見つかりましたが、クラスが必要でした

犯人は誰ですか?新しい休止状態のバージョンまたはプラグイン(かなり長い間2.2にあるように見えるため、更新が必要になる場合があります。

4

1 に答える 1

2

問題はHibernateツールだと思います。現在の安定バージョン(3.2.4.GA)はHibernate Core 3.3.Xと互換性があり、現在のgitマスター(https://github.com/hibernate/hibernate-tools)はHibernateCore3.5.Xで動作すると思います。これらのgithubHibernateToolsフォークの1つをインストールし、hibernate3-maven-pluginで依存関係を宣言してみてください。

https://github.com/axiomalaska/hibernate-tools/tree/3.6.X-Hibernate 3.6.X(開示:私のフォーク)

https://github.com/dgeraskov/hibernate-tools/tree/hibernate4-Hibernate 4.X

于 2011-12-14T06:45:45.907 に答える