maven-jaxws-plugin を使用して、wsdl スキーマから Java クラスを生成しています。生成されたクラスで @XmlElementWrapper アノテーションを生成していません。この投稿から、私は jaxb-xew-plugin を使用する必要があることを理解していますが、maven-jaxws-plugin で動作させることができません。どんな助けでも大歓迎です。試した設定はこちら
<plugin>
<groupId>org.jvnet.jax-ws-commons</groupId>
<artifactId>jaxws-maven-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<goals>
<goal>wsimport</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<xjcArgs>
<xjcArg>-no-header</xjcArg>
<xjcArg>-Xxew</xjcArg>
<xjcArg>-Xxew:instantiate lazy</xjcArg>
<xjcArg>-Xxew:delete</xjcArg>
</xjcArgs>
<extension>true</extension>
<wsdlDirectory>${basedir}/src/main/resources</wsdlDirectory>
<wsdlFiles>
<wsdlFile>attribute-service.wsdl</wsdlFile>
</wsdlFiles>
<sourceDestDir>${project.build.directory}/generated</sourceDestDir>
<verbose>true</verbose>
<keep>true</keep>
<plugins>
<plugin>
<groupId>com.github.jaxb-xew-plugin</groupId>
<artifactId>jaxb-xew-plugin</artifactId>
<version>1.0</version>
</plugin>
</plugins>
</configuration>
</execution>
</executions>
</plugin>
maven-jaxb2-plugin とのみ統合できる場合は、Web サービスを立ち上げるのを手伝ってもらえますか? 基本的に、wsdl を指定する方法とサービス クラスを生成する方法を教えてください。(@WebService アノテーション付き)
ありがとう、
バーギャ