maven-jaxb2-pluginでAutoNameResolutionを動作させることができません。 以下は私が間違っているつもりどこ把握することはできませんよ、私のポンポンファイルmaven-jaxb2-pluginのAutoNameResolution
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.13.2</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<arg>-XautoNameResolution</arg>
</args>
<schemaLanguage>WSDL</schemaLanguage>
<generatePackage>com.commp.soap.service</generatePackage>
<schemas>
<schema>
<url>https://urltowsdl</url>
</schema>
</schemas>
</configuration>
</plugin>
です。私がエラーになるのは"A class/interface with the same name is already in use. Use a class customization to resolve this conflict."
です。ほとんどの機能を消費していないサードパーティのwsdlを消費しているので、私はdonotを使うためのバインディングを書くのではなく、簡単な自動探査をしたいだけです。
私もapache cxfを試しました。
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>stock-quote-service</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${project.basedir}/src/main/generated_java</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${project.basedir}/src/main/resources/wsdl/consume.wsdl</wsdl>
<wsdlLocation>http://usrltoWsdl</wsdlLocation>
<serviceName>Consumer</serviceName>
<extraargs>
<extraarg>-verbose</extraarg>
<extraarg>-p</extraarg>
<extraarg>com.projects.webservicex.service</extraarg>
</extraargs>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-ts</artifactId>
<version>2.2.9</version>
</dependency>
</dependencies>
</plugin>
私はまだ両方<extraarg>-autoNameResolution</extraarg>
と
<defaultOptions>
<autoNameResolution>true</autoNameResolution>
</defaultOptions>
同じ問題"Two declarations cause a collision in the ObjectFactory class."
でこれを実行したどのように私はちょうどautoNameResolveが仕事を得ることができますか?
EDIT デバッグで次のようなログが表示されます。
[DEBUG] Resolving publicId [http://url/webservices/es/common], systemId [null].
resolvePublic(http://url/webservices/es/common,null)
[DEBUG] Parent resolver has resolved publicId [http://url/webservices/es/common], systemId [null] to [null].
[DEBUG] Resolving publicId [http://url/webservices/es/constants], systemId [null].
resolvePublic(http://url/webservices/es/constants,null)
これは、実際に働いていました!なぜですか?私のパッケージの命名は、生成されたファイルのどこにあるパッケージ名と違っていたのでしょうか?しかし、もっと重要なことに、パッケージ名を削除した後、私はautoNameResolutionも必要ありませんでした。 – Manoj
autoNameResolutionオプションは必要ありません。同じ名前空間に同じクラスが2つ定義されていないためです。宛先パッケージ名を変更しようとするときにのみ発生します。しかし、これはこれらのmavenプラグインとは関係なく、 "jaxbとxjc"に直接関係しています。 – Macondo