プロジェクトのソースで注釈プロセッサを実行する必要があります。注釈プロセッサは、注釈処理にのみ必要であり、他には何もないため、プロジェクトの推移的な依存関係になるべきではありません。
これは、私がこれに使用する完全な(機能しない)テストポンムです。
<project xmlns="http://maven.Apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.Apache.org/POM/4.0.0 http://maven.Apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>test</groupId>
<artifactId>test</artifactId>
<packaging>jar</packaging>
<version>1.0-SNAPSHOT</version>
<name>Test annotations</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<hibernate-jpamodelgen.version>1.2.0.Final</hibernate-jpamodelgen.version>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<annotationProcessors>
<annotationProcessor>
org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</annotationProcessor>
</annotationProcessors>
<debug>true</debug>
<optimize>true</optimize>
<source>1.6</source>
<target>1.6</target>
<compilerArguments>
<AaddGeneratedAnnotation>true</AaddGeneratedAnnotation>
<Adebug>true</Adebug>
</compilerArguments>
</configuration>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>${hibernate-jpamodelgen.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
テスト用のプラグイン構成でアノテーションプロセッサとしてorg.hibernate.jpamodelgen.JPAMetaModelEntityProcessor
を明示的に定義しましたが、これは必須ではないことがわかっています。
私が直面している問題は、hibernate-jpamodelgen
依存関係がコンパイラのクラスパスに追加されていないため、注釈プロセッサが見つからず、ビルドが失敗することです。
このように answer のように、依存関係をビルド拡張機能として追加しようとしました(それらが何を想定しているのかわかりません!)。
<extensions>
<extension>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>${hibernate-jpamodelgen.version}</version>
</extension>
</extensions>
これは、hibernate-jpamodelgen
をコンパイラのクラスパスに追加しません。
これまでのところ、私が見つけた唯一のことは、<dependencies>
セクションでプロジェクトに依存関係を追加することです。これには、hibernate-jpamodelgen
を推移的な依存関係として後から追加するという不幸な副作用があります。
以前の作業セットアップでは、maven-processor-plugin
プラグインを使用して、必要なものを実現します。ただし、このプラグインはEclipse m2eでサポートされておらず、maven-compiler-plugin
の最新バージョンは複数のコンパイラー引数を適切に処理するようになったため、後者を使用します。
依存関係を オプションの依存関係 (<optional>true</optional>
)。これにより、コンパイル時に依存関係が追加されますが、推移的な依存関係になることはできません。
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>${hibernate-jpamodelgen.version}</version>
<optional>true</optional>
</dependency>
すべての依存関係(.warなど)を含むこのモジュールでアーティファクトを作成している場合、<scope>provided</scope>
代わりに。これにより、依存関係が推移的になり、モジュールが生成するアーティファクトに含まれなくなります。
annotationProcessorPaths オプションは、Mavenコンパイラプラグインの最近のバージョンで使用できます。
<pluginManagement>
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>5.2.6.Final</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</pluginManagement>
これにより、プロセッサは実際のプロジェクトの依存関係から分離されます。このオプションは、プロジェクトで注釈処理が有効になっている場合、Eclipse M2Eプラグインによって選択されます。
問題は本当に。*のバージョンmaven-compiler-plugin
にあります。 2。*バージョンとは少し異なります。特に、maven-compiler-plugin
。*は、コンパイルプロセスの実行にjavax.toolsインストゥルメントを使用するため、その依存関係を追加せず、クラスパスに拡張機能を構築しません。 maven-compiler-plugin
の古い動作を取り戻すには、新しい構成プロパティforceJavacCompilerUse
を使用する必要があります。
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<forceJavacCompilerUse>true</forceJavacCompilerUse>
</configuration>
....
</plugin>
さらなる訪問者のために、maven-compiler-plugin 3.xシリーズにいくつかの重要な変更があることを発見しました。
これは私がこれを行う方法です。 (私はあなたがリンクした人です)
ポイントは、私のソリューションがこれらの3.xシリーズのmaven-compiler-pluginで動作しないことです。
<project ...>
<build>
<extensions>
<extension>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>1.3.0.Final</version>
</extension>
</extensions>
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version> <!-- See this? -->
</plugin>
</plugins>
</build>
</project>
JDK 10の場合、実際に動作させるには少し夢中にならなければなりませんでした。
<jaxb.version>2.3.0</jaxb.version>
<maven.hibernate.version>5.3.2.Final</maven.hibernate.version>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.version}</version>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/generated-sources/annotations</outputDirectory>
<annotationProcessorPaths>
<annotationProcessorPath>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>${maven.hibernate.version}</version>
</annotationProcessorPath>
<annotationProcessorPath>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>${jaxb.version}</version>
</annotationProcessorPath>
</annotationProcessorPaths>
<annotationProcessors>
<annotationProcessor>org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor</annotationProcessor>
</annotationProcessors>
<compilerArgs>
<arg>-AaddGeneratedAnnotation=false</arg>
</compilerArgs>
<compilerArguments>
<AaddGeneratedAnnotation>false</AaddGeneratedAnnotation>
<Adebug>true</Adebug>
</compilerArguments>
<failOnError>true</failOnError>
</configuration>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
<version>${maven.hibernate.version}</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.0</version>
<type>jar</type>
</dependency>
</dependencies>
</plugin>
どのようなビルドエラーが発生したかはわかりませんが、私の場合は次のとおりです。Ideaで次のコンパイルエラーが発生しました:Annotation processor 'org.hibernate.jpamodelgen.JPAMetaModelEntityProcessor' not found error
しかし、Mavenからコンパイルしたときは、すべて問題ありませんでした。
だから、私の問題は、どういうわけかIdea設定で間違った設定を取得したことです。特に、Ideaは何らかの方法でプロセッサを検出し、モジュールプロセッサプロファイルの設定に入れたようです。 ここで説明します
次のように修正しました。
これは、このような問題を解決するために、プロファイルにこのような依存関係を含めるより良い方法だと思います。
<profile>
<id>XXX-profile</id>
<dependencies>
<dependency>
// XXX artifact path
</dependency>
</dependencies>
</profile>