我用来maven-jaxb2-plugin
从wsdl
文件生成类。我的wsdl
fila 有多个架构条目,但我只需要一个。那么是否可以指定我想要生成的shema。也许在 pom.xml 或 xjb 绑定文件中?我的pop.xml
maven-jaxb2-plugin
配置:
<plugin>
<groupId>org.jvnet.jaxb2.maven2</groupId>
<artifactId>maven-jaxb2-plugin</artifactId>
<version>0.8.0</version>
<executions>
<execution>
<id>some_id</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<schemaLanguage>WSDL</schemaLanguage>
<schemaDirectory>${basedir}/src/main/resources/wsdl/</schemaDirectory>
<schemaIncludes>
<include>*.wsdl</include>
</schemaIncludes>
<bindingIncludes>
<include>binding.xjb</include> // is
</bindingIncludes>
<generatePackage>my.custom.package</generatePackage> -->
<generateDirectory>target/generated-sources/jaxb</generateDirectory>
</configuration>
</execution>
我的wsdl
文件看起来像这样:
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" ... other namespaces>
<types>
<xs:schema targetNamespace="http://www.custom.se/webservices/" elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="Elem">
<xs:complexType>
<xs:sequence>
<xs:element name="SeqNo" type="xs:string"/>
<xs:element name="Method" type="xs:string"/>
<xs:element name="Id" type="xs:string"/>
<xs:element name="UserId" type="xs:string"/>
<xs:element name="ResultCode" type="xs:string"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
<xs:schema targetNamespace="http://www.custom.se/webservices/publishing/">
....
</xs:shema>
<xs:schema targetNamespace="http://www.custom.se/webservices/smth/">
....
</xs:shema>
....
我很感激任何帮助。