以Spring Bean配置文件为例解释 xmlns,xmlns:xsi,xsi:schemaLocation
程序员文章站
2022-04-30 22:35:15
一个"形式良好"的XML文档拥有正确的语法。 XML 文档必须有一个根元素 XML元素都必须有一个关闭标签 XML 标签对大小写敏感 XML 元素必须被正确的嵌套 XML 属性值必须加引号 ......
一个"形式良好"的xml文档拥有正确的语法。
- xml 文档必须有一个根元素
- xml元素都必须有一个关闭标签
- xml 标签对大小写敏感
- xml 元素必须被正确的嵌套
- xml 属性值必须加引号
<!--以spring的bean的配置文件为例,解释xml--> <? xml version="1.0" encoding="utf-8" ?><!-- 这是xml文件的开头--> <!-- xml的根结点,所有其他节点必须被根结点所包裹。 根结点中包含xml的命名空间的定义,一个xmlns定义一个命名空间,不同的命名空间可能有相同的标签,可以通过xmlns:prefix添加自定义前缀来区分不同的命名空间中的标签。 xmlns:xsi是w3c认证的专用的命名空间,是用来引用xml schema的,xml schema是w3c制定的基于xml格式的xml文档结构描述标准,直接点说就是一个xml引入的xml schema中定义了这个xml的语法(xml作为可扩展标记语言,就是通过引入语法定义文件来实现可扩展性的)。 通过引入xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"命名空间就可以通过在根结点上使用xsi:schemalocation属性来指定要引用的xml schema文件(.xsd文件)格式是: xsi:schemalocation="命名空间 具体文件地址 命名空间 具体文件地址" --> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:util="http://www.springframework.org/schema/util" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> </beans>