6

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 アノテーション付き)

ありがとう、

バーギャ

4

2 に答える 2

3

この投稿は執筆時点で 10 か月前のものですが、誰かが必要とする場合に備えて回答します。

jaxws-maven-plugin と jaxb-xew-plugin の助けを借りて、リスト/配列オブジェクトの @XmlElementWrapper アノテーションを生成できます

wsdl に次のようなスキーマがあると仮定します。

<xs:element name="books" minOccurs="0" >
  <xs:complexType>
    <xs:sequence>
      <xs:element name="book" type="Book" minOccurs="0" maxOccurs="unbounded" />
    </xs:sequence>
  </xs:complexType>
</xs:element>

Java を次のように生成します。

@XmlElementWrapper(name = "books")
@XmlElement(name = "book")
protected List<Book> books;

ここにビルド/プラグインがあります

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>jaxws-maven-plugin</artifactId>
    <version>1.12</version>
    <configuration>
        <wsdlDirectory>${project.basedir}/src/main/webapp/WEB-INF/wsdl/</wsdlDirectory>
        <xjcArgs>
            <xjcArg>-no-header</xjcArg>
            <xjcArg>-Xxew</xjcArg>
            <xjcArg>-Xxew:instantiate lazy</xjcArg>
            <xjcArg>-Xxew:delete</xjcArg>
        </xjcArgs>
    </configuration>
    <executions>
        <execution>
            <id>wsdl_import</id>
            <goals>
                <goal>wsimport</goal>
            </goals>
        </execution>
    </executions>

    <dependencies>
        <dependency>
            <groupId>com.github.jaxb-xew-plugin</groupId>
            <artifactId>jaxb-xew-plugin</artifactId>
            <version>1.1</version>
        </dependency>

        <dependency>
            <groupId>com.sun.xml.bind</groupId>
            <artifactId>jaxb-xjc</artifactId>
            <version>2.2.4-1</version>
        </dependency>                   
    </dependencies>
</plugin> 
于 2014-01-14T14:35:09.193 に答える
0

jaxb xew プラグインのサンプル ページに、jaxws maven プラグインの設定例があります。jaxws-maven-plugin 2.3.1-b03 は jaxb-xew-plugin 1.2 で正常に動作します。

于 2014-05-15T11:08:21.017 に答える