schema与命名空间的使用案例

1、xml如何使用schema

1
2
3
4
5
6
7
8
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
</beans>

解释:

2、如何定义schema

1
2
3
4
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:nst="http://spec.nst.cn/specification/namespace"
targetNamespace="http://spec.nst.cn/specification/namespace" elementFormDefault="qualified">
</xs:schema>

解释:

  • targetNamespace=”http://spec.nst.cn/specification/namespace 定义了一个命名空间,只有在schema中定义了命名空间,xml引用时才能使用别名,否则只能省略别名;

  • xmlns:nst=”http://spec.nst.cn/specification/namespace 引用了一个命名空间,并起了一个别名,此处schema的身份相当于一个xml

  • 一般schema中的通用写法为elementFormDefault=”qualified” attributeFormDefault=”unqualified” ,后续做解释


如有疑问,欢迎讨论~~