I am using Apache CXF's cxf-codegen-plugin to turn a wsdl into java objects. I specified a binding file to add additional jaxb processing. I want all of these files to inherit from an interface (or extend an abstract class).
My problem is that while I can get this to work with one generated file using
<jaxb:bindings node="xsd:complexType[@name='sampleObj'] ">
<inheritance:implements>example.Dao</inheritance:implements>
</jaxb:bindings>
which will make sampleObj implement example.Dao. I do not know how to get this to process for all of my complex types (generated classes). Without repeating the above binding for every class (>100)
I tried,
<jaxb:bindings multiple="true" node="//xsd:compexType[@name='*'] ">
but it does not work.
Here is my maven plugin, if it helps:
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>generate-resources</id>
<phase>process-resources</phase>
<configuration>
<sourceRoot>${project.build.directory}/generated/</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${wsdl_location}</wsdl>
<wsdlLocation>classpath:wsdl.wsdl</wsdlLocation>
<!--<wsdlLocation>classpath:wsdl.wsdl</wsdlLocation>-->
<extraargs>
<extraarg>-autoNameResolution</extraarg>
<extraarg>-xjc-Xfluent-api</extraarg>
<extraarg>-xjc-Xbg</extraarg>
<extraarg>-verbose</extraarg>
<extraargs>-validate</extraargs>
<extraargs>-mark-generated</extraargs>
<extraargs>-xjc-Xinheritance</extraargs>
<extraarg>-p</extraarg>
<extraarg>com.example</extraarg>
</extraargs>
<bindingFiles>
<bindingFile>${project.build.directory}\classes\jax-ws_binding.xjb</bindingFile>
</bindingFiles>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-fluent-api</artifactId>
<version>3.0</version>
</dependency>
<dependency>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics</artifactId>
<version>0.6.5</version>
</dependency>
<dependency>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-annotate</artifactId>
<version>0.6.5</version>
</dependency>
<dependency>
<groupId>org.jvnet.jaxb2_commons</groupId>
<artifactId>jaxb2-basics-runtime</artifactId>
<version>0.6.5</version>
</dependency>
<dependency>
<groupId>org.apache.cxf.xjcplugins</groupId>
<artifactId>cxf-xjc-boolean</artifactId>
<version>2.7.0</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-api</artifactId>
<version>${cxf.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>