web-dev-qa-db-ja.com

Maven Jaxb2 xjcプラグインエラースキーマが見つかりません

最近、私はJAXBでXSDをJavaクラスに、またはその逆に変換するために時間を費やしました。初心者向けの非常に優れたチュートリアルです http://www.journaldev.com/1312/how-to-generate-Java-classes-from-xsd-using-xjc-maven-plugin 手順に厳密に従いますが、常にエラーが発生しますmvn clean install

これが私のpom.xmlファイル。

<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>jd</groupId>
    <artifactId>jd</artifactId>
    <version>0.0.1-SNAPSHOT</version>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>


    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>


    <build>
        <plugins>
            <!-- Plugin required to build Java classes from XSD using XJC -->
            <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 name of your generated source package -->
                    <arguments>-extension -npa -b ${project.basedir}/src/main/Java/com/moodys/jaxb/global.xjb</arguments>
                </configuration>
            </plugin>

        </plugins>
    </build>

</project>

しかし、mvn clean install、常に次のようなエラーが発生します。

C:\Users\congy\Desktop\Work\workspace\JaxbFromClass>mvn clean jaxb2:xjc
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building jd 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ jd ---
[INFO] Deleting C:\Users\congy\Desktop\Work\workspace\JaxbFromClass\target
[INFO]
[INFO] --- jaxb2-maven-plugin:1.5:xjc (default-cli) @ jd ---
[INFO] Generating source...
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.487s
[INFO] Finished at: Thu Jul 04 19:09:37 CST 2013
[INFO] Final Memory: 4M/122M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.codehaus.mojo:jaxb2-maven-plugin:1.5:xjc (default-cli) on project jd: No schemas have been found -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.Apache.org/confluence/display/MAVEN/MojoExecutionException

誰かが原因を教えてくれますか、それとも単に詳細情報を参照する必要があるのか​​教えてください

別の質問は:この質問によると Maven JAXBプラグインの違い 、少なくとも3つのjaxbプラグインがあります。これらのプラグインはすべて同じ目的で生成されたのですか?もしそうなら、なぜ?

前もって感謝します!

10
mCY

schemaDirectoryを指定しなかったため、プラグインは デフォルトのスキーマディレクトリ 内のすべてのXMLスキーマファイルからJavaソースを生成しようとしています。= ドキュメント に従ってプラグインを設定します。

<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>target/generated-sources/jaxb</outputDirectory>
       <packageName>com.your.package.jaxb</packageName>
       <schemaDirectory>src/main/xsd</schemaDirectory>
       <schemaFiles>jaxb.xsd</schemaFiles>
      </configuration>
    </execution>
  </executions>
</plugin>
17
willome

jaxb.xsdsrc/main/resourcesの下にあることを確認してください。指定された場所にスキームが見つからなかったため、プラグインが警告しています。

3
Ravi Kiran Y

Pom.xmlファイルで以下のように使用できます

   <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>
0
Subhasish Sahu