gpt4 book ai didi

java - 文档的根元素不是

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:26:31 25 4
gpt4 key购买 nike

我的项目中有一个名为 jvxml-implementation-0-7.xsd 的文件。

文件内容为

<?xml version="1.0" encoding="UTF-8"?>
<xsi:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema"
xmlns="http://www.jvoicexml.org/xsd/jvxml-implementation-0-7.xsd"
xmlns:tns="http://www.example.org/jvxml-implementation"
xmlns:beans="http://www.springframework.org/schema/beans"
elementFormDefault="qualified">
<xsi:import namespace="http://www.springframework.org/schema/beans"
schemaLocation="spring-beans-2.0.xsd" />
<xsi:element name="implementation">
<xsi:annotation>
<xsi:documentation>
Implementation platform for JVoiceXML
</xsi:documentation>
</xsi:annotation>
<xsi:complexType>
<xsi:sequence minOccurs="0" maxOccurs="unbounded">
<xsi:element name="repository" type="xsi:string"
minOccurs="0" maxOccurs="1">
<xsi:annotation>
<xsi:documentation>
The name of the loader repository.
</xsi:documentation>
</xsi:annotation>
</xsi:element>
<xsi:element name="classpath" type="xsi:string"
minOccurs="0" maxOccurs="unbounded">
<xsi:annotation>
<xsi:documentation>
Entry to be added to the CLASSPATH when
loading this implementation platform^M
</xsi:documentation>
</xsi:annotation>
</xsi:element>
<xsi:element ref="beans:bean" minOccurs="1"
maxOccurs="unbounded">
<xsi:annotation>
<xsi:documentation>Spring bean configuration
</xsi:documentation>
</xsi:annotation>
</xsi:element>
</xsi:sequence>
</xsi:complexType>

但是在加载的时候会出现这样的错误。

org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document 'jvxml-implementation-0-7.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.

我已经更改了权限并将文件放在它应该在的位置。所以我留下了第三个错误。

请告诉我如何处理它。

问候。

最佳答案

XSI 是模式实例引用 - 而不是模式。

2 个中的 1 个可以在这里工作。

  1. 更改 <xsi:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema"<xsi:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

  1. 更改 <xsi:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema"<xsd:schema xmlns:xsi="http://www.w3.org/2001/XMLSchema" 并将所有“xsi”替换为“xsd”

关于java - 文档的根元素不是 <xsd :schema>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10946173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com