如何使wsimport生成构造函数?

时间:2012-06-21 14:23:10

标签: java web-services maven wsimport

wsimport生成没有参数化构造函数的源代码。因此,如果bean具有许多属性,则需要手动调用所有setter:

Person person = new Person();
person.setName("Alex");

Address address = new Address();
address.setCity("Rome");

person.setAddress(address);

编写像这样的代码更加可读和方便:

Person person = new Person("Alex", new Address("Rome"))

那么,有没有办法让wsimport做这个工作? (我正在使用maven wsimport插件)

3 个答案:

答案 0 :(得分:9)

要将wsimport与xjc一起使用,请执行以下操作:

    <plugin>
            <groupId>org.jvnet.jax-ws-commons</groupId>
            <artifactId>jaxws-maven-plugin</artifactId>
            <version>2.3</version>

            <dependencies>
                <!-- put xjc-plugins on the jaxws-maven-plugin's classpath -->
                <dependency>
                    <groupId>org.jvnet.jaxb2_commons</groupId>
                    <artifactId>jaxb2-basics</artifactId>
                    <version>0.6.4</version>
                </dependency>
                <dependency>
                    <groupId>org.jvnet.jaxb2_commons</groupId>
                    <artifactId>jaxb2-value-constructor</artifactId>
                    <version>3.0</version>
                </dependency>
            </dependencies>
            <executions>
                          <execution>
                    <id>wsdl-gen</id>
                    <goals>
                        <goal>wsimport</goal>
                    </goals>
                    <configuration>
                        <wsdlDirectory>${project.basedir}/src/main/resources/wsdl/</wsdlDirectory>
                        <bindingDirectory>${project.basedir}/src/main/resources/wsdl</bindingDirectory>
                        <sourceDestDir>${project.build.directory}/generated-sources/wsimport</sourceDestDir>
                        <extension>true</extension>
                        <target>2.2</target>
                        <verbose>true</verbose>
                        <!-- tell JAXB to actually use xjc-plugins -->
                        <args>
                            <arg>-B-Xequals</arg>
                            <arg>-B-XhashCode</arg>
                            <arg>-B-Xvalue-constructor</arg>
                        </args>
                    </configuration>
                </execution>
    </executions>
        </plugin>

关键部分是-B,它将传递-X ...值。

...

   <args>
      <arg>-B-Xequals</arg>
      <arg>-B-XhashCode</arg>
      <arg>-B-Xvalue-constructor</arg>
   </args>

...

这会生成一个值构造函数,equals和hashcode方法。等号和哈希码由jaxb2-basics插件提供。

答案 1 :(得分:5)

xjc工具使用JAXB Value Constructor Plugin。 你可以像maven-xjc-plugin一样使用它:

<project>
  ...
  <build>
    ...
    <plugins>
      ...
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>xjc-maven-plugin</artifactId>
        <version>1.0-beta-2-SNAPSHOT</version>
        <executions>
          <execution>
            <goals>
              <goal>xjc</goal>
            </goals>
            <configuration>
              <task><![CDATA[
                <xjc schema="src/main/resources/com/acme/services.xsd" package="com.acme">
                   <arg value="-Xvalue-constructor" />
                </xjc>
              ]]></task>
            </configuration>
          </execution>
        </executions>
      </plugin>
      ...
    </plugins>
    ...
  </build>
  ...
</project>    

答案 2 :(得分:0)

wsimport使用xjc创建Java类。它支持插件,其中一些可以在jaxb2-commons找到。还有一个构造函数插件,它创建一个带有所有子元素参数的构造函数。

jax-ws-commons页面提供了有关如何将XJC插件与JAX-WS Maven插件一起使用的说明。