gpt4 book ai didi

没有 schemaLocation 的 XMLSchema 和 XMLSchema 实例 namespace

转载 作者:数据小太阳 更新时间:2023-10-29 02:34:28 27 4
gpt4 key购买 nike

我对xml命名空间有几个疑问,我将用这三段代码来解释:

1 - 非常简单的 XML 模式:

<?xml version="1.0" encoding="US-ASCII"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:tns="http://www.library.com"
targetNamespace="http://www.library.com"
elementFormDefault="qualified"
attributeFormDefault="unqualified">

<element name="Book" type="tns:BookType" />

<complexType name="BookType">
<sequence>
<element name="Title" type="string" />
<element name="Author" type="string" />
</sequence>
</complexType>

</schema>

2 - 使用新创建的 xml 架构的 XML:

<?xml version="1.0" encoding="US-ASCII"?>
<Book xmlns:xsi="http://www.wc3.org/2001XMLSchema-instance"
xsi:schemaLocation="http://www.library.com ex9.xsd"
xmlns="http://www.library.com">

<Title>Scherlock Holmes</Title>
Author>Arthur Conan Doyle</Author>
</Book>

3 - 另一个与上面两个没有关系的片段代码:

<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">
....
</beans>

问题是:

  1. 为什么我们总是像这样声明命名空间xmlns="http://www.w3.org/2001/XMLSchema"xmlns:xsi="http://www.wc3.org/2001/XMLSchema-instance" 但没有给出这些的 schemaLocation
  2. XML 解析器如何知道(例如为了验证)xmlns="http://www.w3.org/2001/XMLSchema" 定义类似 <attribute> 的元素, <complexType> , <sequence>等等?
  3. 阅读许多帖子后,我了解到命名空间及其 URI,基本上没有任何意义,它们只是用来避免名字矛盾的。但我还读到,如果你声明xmlns="http://www.w3.org/2001/XMLSchema" 命名空间错误 XML 文件将无效,为什么?
  4. 为什么在最后一个代码片段中总是没有给出 schemaLocation<强> http://www.w3.org/2001/XMLSchema-instance .

最佳答案

  1. 那些内置 namespace 属于 XSD 组件本身。不schemaLocation 是必需的,因为它们的定义隐含在XML 架构建议书。
  2. 符合定义的 XML 解析器将理解xs:attribute
  3. 我不会说命名空间毫无意义。超越成为一种方式区分以其他方式命名的组件、 namespace 也可用于将组件的使用与其相关联另一个 XSD 中的集体定义。
  4. 如 #1 所述,http://www.w3.org/2001/XMLSchema-instance 是一个由组件组成的内置命名空间,其定义是XML Schema Recommendation 已经暗示了这一点。

关于没有 schemaLocation 的 XMLSchema 和 XMLSchema 实例 namespace ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32135573/

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