我正在尝试创建一个DefaultWsdl11Definition类型的bean,但是当项目部署到weblogic环境时,架构文件位置没有被解析。
豆:
<bean id="pServiceWsdl" class="org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition">
<property name="schemaCollection">
<bean class="org.springframework.xml.xsd.commons.CommonsXsdSchemaCollection">
<property name="inline" value="true"/>
<property name="xsds">
<list>
<value>classpath:/p.xsd</value>
</list>
</property>
</bean>
</property>
<property name="targetNamespace" value="http://example.com/p/"/>
<property name="portTypeName" value="pPortType"/>
<property name="serviceName" value="pService"/>
<property name="locationUri" value="/services"/>
</bean>
架构文件包含以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:include schemaLocation="p1.xsd"/>
<xsd:include schemaLocation="p2.xsd"/>
<xsd:element name="pRequest">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="p" type="C:p"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="pResponse">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="pEnvelope" type="C:pEnvelope"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
我收到的错误如下:
引起:java.io.FileNotFoundException:d:\ p1.xsd(系统找不到指定的文件)
答案 0 :(得分:1)
在这种情况下,您必须指定完整路径。
<xsd:include schemaLocation="classpath:com/example/p/oh/incoming/wsdl/com/example/p/xsd/PCBatchEnvelope-1p6.xsd"/>
您还需要使用 commons xmlschema 将所有xsd内联到单个。因此,为了使您能够在maven中添加以下依赖项。
<dependency>
<groupId>org.apache.ws.commons.schema</groupId>
<artifactId>XmlSchema</artifactId>
<version>1.4.7</version>
</dependency>