Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

wsimport generates source code without parameterized constructors. Therefore, if the bean has many properties, one needs to invoke all the setters manually:

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

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

person.setAddress(address);

It's much more readable and convenient to just write the code like this:

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

So, is there any way to make wsimport do this job? (I'm using maven wsimport plugin)

share|improve this question

2 Answers

up vote 2 down vote accepted

Use the JAXB Value Constructor Plugin for the xjc tool. You can use it with maven-xjc-plugin like this:

<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>    
share|improve this answer
Can you tell me where I can find repository with this artifact? Thanks. – aljesco Jun 21 '12 at 15:18
It's in the maven cetral – npe Jun 21 '12 at 15:22

wsimport uses xjc to create the Java classes. It supports plugins, some of which you can find at jaxb2-commons. There is also a constructor plugin, which creates a constructor with parameters for all child elements.

The jax-ws-commons page has instructions on how to use XJC plugins with the JAX-WS Maven plugin.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.