Pom.xmlのMavenビルドに次のプラグインを追加しました
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<extension>true</extension>
<clearOutputDir>false</clearOutputDir>
<schemaDirectory>${basedir}/src/main/resources/xsd</schemaDirectory>
<schemaFiles>myapp.xsd</schemaFiles>
<outputDirectory>${basedir}/src/main/Java</outputDirectory>
<bindingDirectory>src/main/resources/xsd</bindingDirectory>
<bindingFiles>myapp-bindings.xjb</bindingFiles>
</configuration>
</execution>
</executions>
</plugin>
ビルドエラーは次のとおりです。
[INFO] Ignored given or default xjbSources [C:\WorkSpace\MyApp\src\main\xjb], since it is not an existent file or directory.
[INFO] Ignored given or default sources [C:\WorkSpace\MyApp\src\main\xsd], since it is not an existent file or directory.
[WARNING] No XSD files found. Please check your plugin configuration.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 3.273s
[INFO] Finished at: Tue May 12 16:24:26 EDT 2015
[INFO] Final Memory: 9M/124M
[INFO] ------------------------------------------------------------------------
[WARNING] The requested profile "dev-artifactory" could not be activated because it does not exist.
[ERROR] Failed to execute goal org.codehaus.mojo:jaxb2-maven-plugin:2.1:xjc (default) on project pml-jasypt-authentication-service: MojoExecutionException: NoSchemasException -> [Help 1]
私は混乱しています。なぜプラグインは設定で指定されたパスとファイルを参照していないのですか。
バージョン2.1では、ソースの指定方法が変更されました
http://mojo.codehaus.org/jaxb2-maven-plugin/xjc-mojo.html#sources
例えば
<configuration>
...
<sources>
<source>some/explicit/relative/file.xsd</source>
<source>/another/absolute/path/to/a/specification.xsd</source>
<source>a/directory/holding/xsds</source>
</sources>
</configuration>
私は他の問題の全世界を抱えているので、jsharkが示唆したように1.6に固執することは良い計画です
バージョン2.1にはバグがあります。
新しい構文で<version>2.2</version>
を使用できます。
<configuration>
...
<sources>
<source>some/explicit/relative/file.xsd</source>
<source>/another/absolute/path/to/a/specification.xsd</source>
<source>a/directory/holding/xsds</source>
</sources>
</configuration>
古い構文で<version>1.6</version>
を使用できます。
<configuration>
...
<schemaDirectory>${basedir}/src/main/resources/xsd</schemaDirectory>
<schemaFiles>myapp.xsd</schemaFiles>
</configuration>
今日も同じ問題がありましたが、次のように入力して解決しました。
<version>1.6</version>
プラグインの定義(一般的には良い習慣です)
次のように使用することもできます。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>id1</id>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<outputDirectory>src/main/Java</outputDirectory>
<clearOutputDir>false</clearOutputDir>
<packageName>com.subu.xsd.model</packageName>
<schemaDirectory>src/main/Java/schemadir</schemaDirectory>
<schemaFiles>XYZ.xsd</schemaFiles>
</configuration>
</execution>
</executions>
</plugin>
Eclipse mavenアップデートの「スナップショット/リリースの強制アップデート」オプションをチェックして解決しました。
関連するすべての依存関係を強制的に更新します。
Jaxbプラグイン宣言の最後にxerces依存関係を追加するだけで機能します。とても簡単です。プラグインを実行するにはクラスが必要です。今すぐ彼にあげてください:) I.セナトフ。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>generate-sources</phase>
<id>xjc-dtd</id>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<arguments>-dtd</arguments>
<dtd>true</dtd>
<!-- The package of your generated sources -->
<packageName>mi.minet.lurc.dtd</packageName>
<schemaDirectory>src/main/resources/dtd</schemaDirectory>
<schemaFiles>lurc.dtd</schemaFiles>
</configuration>
</execution>
<execution>
<phase>generate-sources</phase>
<id>xjc-xsd</id>
<goals>
<goal>xjc</goal>
</goals>
<configuration>
<packageName>mi.minet.lurc.xsd.configuration</packageName>
<schemaDirectory>src/main/resources/xsd</schemaDirectory>
<schemaFiles>configuration.xsd</schemaFiles>
<clearOutputDir>false</clearOutputDir>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.11.0</version>
</dependency>
</dependencies>
</plugin>
コンパイラのバージョンをJDK 1.8
とjaxb2-maven-plugin
version 1.5
に設定することで動作しました ドキュメント に従って、最小のJDK 1.6で動作しますサイトで変更された場合]。例えば :
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mntq.jaxb.xsd.to.pojo</groupId>
<artifactId>XsdToPojo</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<finalName>PersistencePoJO</finalName>
<plugins>
<plugin>
<groupId>org.Apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jaxb2-maven-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>xjc</id>
<goals>
<goal>xjc</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- The package of your generated sources -->
<packageName>com.mntq.jaxb.pojo</packageName>
</configuration>
</plugin>
</plugins>
</build>
</project>