我正在使用Apache CXF的cxf-codegen-plugin将wsdl转换为java对象。我指定了一个绑定文件来添加额外的jaxb处理。我希望所有这些文件都从接口继承(或扩展抽象类)。
我的问题是,虽然我可以使用
使用一个生成的文件<jaxb:bindings node="xsd:complexType[@name='sampleObj'] ">
<inheritance:implements>example.Dao</inheritance:implements>
</jaxb:bindings>
将使sampleObj实现example.Dao。 我不知道如何处理所有复杂类型(生成的类)。不重复每个类(> 100)的上述绑定
我试过了,
<jaxb:bindings multiple="true" node="//xsd:compexType[@name='*'] ">
但它不起作用。
这是我的maven插件,如果它有帮助:
<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>
答案 0 :(得分:0)
试试这个
<jaxb:bindings node="xsd:complexType">
答案 1 :(得分:0)
啊,最后发现:将multiple="true"
添加到bindings
标记:
<jaxb:bindings schemaLocation="../../../../contracts/src/main/resources/wsdl/ifx24.xsd">
<jaxb:bindings node="xsd:complexType[contains(@name, 'Rq_Type')]" multiple="true">
<inheritance:implements>hu.eir.ifx.IfxExchange</inheritance:implements>
</jaxb:bindings>
</jaxb:bindings>