FileNotFoundException when importing an xsd



我正在尝试创建一个类型defaultwsdl11definition的bean,但是当项目部署到博客环境时,架构文件位置尚未解决。

bean:

 <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>

我收到的错误如下:

引起的:

您必须在这种情况下指定完整的路径。

<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>

相关内容

  • 没有找到相关文章

最新更新