我试图基于多个xml架构为Spring WS Web服务动态生成WSDL。我有一个多个xsd文件,所有这些文件都是"连接"使用xsd:import elements。
Spring WS引用说:
如果要使用包含或导入的多个模式,则需要将Commons XMLSchema放在类路径上。如果Commons XMLSchema在类路径上,则上述元素将遵循所有XSD导入和包含,并将它们作为单个XSD在WSDL中内联。这极大地简化了模式的部署,这仍然可以单独编辑它们。
所以我添加了这个maven依赖:
<dependency>
<groupId>org.apache.ws.xmlschema</groupId>
<artifactId>xmlschema-core</artifactId>
<version>2.2.1</version>
</dependency>
以这种方式配置WSDL构建器:
@Bean(name="updateContactService")
public DefaultWsdl11Definition defaultWsdl11Definition() throws Exception {
DefaultWsdl11Definition wsdl11Definition = new DefaultWsdl11Definition();
wsdl11Definition.setPortTypeName("updateContactPort");
wsdl11Definition.setLocationUri("/ws/updateContact");
wsdl11Definition.setTargetNamespace("http://spring.io/guides/gs-producing-web-service");
wsdl11Definition.setSchema(updateContactXsd());
return wsdl11Definition;
}
@Bean
public XsdSchemaCollection updateContactXsd() throws Exception {
return new SimpleXsdSchema(new ClassPathResource("xsds/contact/outboundMessage.xsd"));
}
但生成的WSDL只包含一个架构元素(并显示导入错误的位置)。
<xs:import namespace="http://xmlns.oracle.com/apps/cdm/foundation/parties/personService/" schemaLocation="personService.xsd"/>
任何提示? Spring WS版本是2.3.1
<?xml version="1.0" encoding="UTF-8" standalone="no"?><wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:sch="http://xmlns.oracle.com/apps/crmCommon/content/outboundMessage/types/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://spring.io/guides/gs-producing-web-service" targetNamespace="http://spring.io/guides/gs-producing-web-service">
<wsdl:types>
<xs:schema xmlns="http://xmlns.oracle.com/apps/crmCommon/content/outboundMessage/types/" xmlns:ns2="http://xmlns.oracle.com/apps/cdm/foundation/parties/personService/" xmlns:tns0="http://xmlns.oracle.com/apps/crmCommon/content/outboundMessage/types/" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://xmlns.oracle.com/apps/crmCommon/content/outboundMessage/types/">
<xs:import namespace="http://xmlns.oracle.com/apps/cdm/foundation/parties/personService/" schemaLocation="personService.xsd"/>
<xs:element name="process" type="tns0:processType"/>
<xs:complexType name="processType">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="Person" type="ns2:Person"/>
</xs:sequence>
</xs:complexType>
<xs:element name="processResponse" type="tns0:processResponseType"/>
<xs:complexType name="processResponseType">
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="Person" type="ns2:Person"/>
</xs:sequence>
</xs:complexType>
</xs:schema>
</wsdl:types>
<wsdl:message name="processResponse">
<wsdl:part element="sch:processResponse" name="processResponse">
</wsdl:part>
</wsdl:message>
<wsdl:portType name="updateContactPort">
<wsdl:operation name="process">
<wsdl:output message="tns:processResponse" name="processResponse">
</wsdl:output>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="updateContactPortSoap11" type="tns:updateContactPort">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="process">
<soap:operation soapAction=""/>
<wsdl:output name="processResponse">
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="updateContactPortService">
<wsdl:port binding="tns:updateContactPortSoap11" name="updateContactPortSoap11">
<soap:address location="https://localhost:4440/ws/updateContact"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
答案 0 :(得分:4)
解决!
我不得不使用XsdSchemaCollection而不是SimpleXsdSchema;另外我必须设置为&#34; inline&#34;集合的参数。
@Bean(name="updateContactService")
public DefaultWsdl11Definition defaultWsdl11Definition() throws Exception {
DefaultWsdl11Definition wsdl11Definition = new DefaultWsdl11Definition();
wsdl11Definition.setPortTypeName("updateContactPort");
wsdl11Definition.setLocationUri("/ws/updateContact");
wsdl11Definition.setTargetNamespace("http://spring.io/guides/gs-producing-web-service");
wsdl11Definition.setSchemaCollection(updateContactXsd());
return wsdl11Definition;
}
@Bean
public XsdSchemaCollection updateContactXsd() throws Exception {
CommonsXsdSchemaCollection xsds = new CommonsXsdSchemaCollection(new ClassPathResource("xsds/contact/outboundMessage.xsd"));
xsds.setInline(true); <-------------------
return xsds;
}
注意:
xsds.setInline(真);
我将在Jira上打开一个问题,因为我认为它的引用并不清楚!