`
kevin_xia
  • 浏览: 7077 次
  • 性别: Icon_minigender_1
社区版块
存档分类
最新评论

关于XML文档的xmlns、xmlns:xsi和xsi:schemaLocation

    博客分类:
  • xml
 
阅读更多

xml文档中的头部标签说明:

 

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

       xmlns:context="http://www.springframework.org/schema/context"

       xmlns:mvc="http://www.springframework.org/schema/mvc"

       xsi:schemaLocation="http://www.springframework.org/schema/beans 

                           http://www.springframework.org/schema/beans/spring-beans.xsd

                           http://www.springframework.org/schema/context 

                           http://www.springframework.org/schema/context/spring-context.xsd

                           http://www.springframework.org/schema/mvc

                           http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <context:component-scan base-package="xxx.xxx.controller" />

     

    <context:annotation-config/>

    <mvc:default-servlet-handler/>

    <mvc:annotation-driven/>

     

    <mvc:resources mapping="/images/**" location="/images/" />

     

    <bean id="xxx" class="xxx.xxx.xxx.Xxx">

        <property name="xxx" value="xxxx"/>

    </bean>

</beans>

xmlns - XML Namespace的缩写

 

使用语法: xmlns:namespace-prefix="namespaceURI"。其中namespace-prefix为自定义前缀,只要在这个XML文档中保证前缀不重复即可;namespaceURI是这个前缀对应的XML Namespace的定义.

xmlns:xsi表示使用xsi作为前缀的Namespace,当然前缀xsi需要在文档中声明。

xsi:schemaLocation有何作用?

    xsi:schemaLocation属性其实是Namespace为http://www.w3.org/2001/XMLSchema-instance里的schemaLocation属性,正是因为我们一开始声明了

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

    这里才写作xsi:schemaLocation(当然一般都使用这个前缀)。它定义了XML Namespace和对应的XSD(Xml Schema Definition)文档的位置的关系。它的值由一个或多个URI引用对组成,两个URI之间以空白符分隔(空格和换行均可)。第一个URI是定义的XML Namespace的值,第二个URI给出Schema文档的位置,Schema处理器将从这个位置读取Schema文档,该文档的targetNamespace必须与第一个URI相匹配,例如:

1
2
xsi:schemaLocation="http://www.springframework.org/schema/context 
                    http://www.springframework.org/schema/context/spring-context.xsd"

    这里表示Namespace为http://www.springframework.org/schema/context的Schema的位置为http://www.springframework.org/schema/context/spring-context.xsd

 

引用网页

分享到:
评论

相关推荐

    xml中的xmlns:、xmlns:xsi和xsi:schemaLocation.doc

    xmlns:xsi是指XML文档遵守XML schema规范,xsi全名:xml schema instance,指具体用到的schema资源文件里定义的元素所遵守的规范。例如,在Spring框架的配置文件中,使用xmlns:xsi=...

    JAVA web.xml配置详解

    &lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;web-app xmlns=... 网站名称 网站描述 &lt;!-- icon元素包含small-icon和large-icon两个子元素.用来指定web站台中小图标和大图标的路径....--small-icon元素应指向web...

    SpringMVC配置文件最全约束

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx=...

    Maven的pom.xml配置文件详细配置说明

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd "&gt; &lt;!-- 父项目的坐标。如果项目中没有规定某个元素...

    JavaWeb开发技术-引入Schema约束.pptx

    在XML文档中,你可以通过声明一个名称空间,并使用`xsi:schemaLocation`属性来指定对应的XML Schema文档。例如: ```xml &lt;root xmlns="http://example.com/mynamespace" xmlns:xsi=...

    xwork-2.0.4-src

    &lt;project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=...

    配置文件pom.xml

    &lt;project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=...

    项目源码java京东商城购物网站

    xsi:schemaLocation= "http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/tx ...

    springmvc-config.xml

    xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd http://www.springframework.org/schema/mvc ...

    Spring实战2-Bean注入详解的源代码

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=...

    springbootMaven配置文件,用于更改资源下载路径,避免初始化项目报错

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd"&gt; &lt;localRepository&gt;D:\repository\...

    XML Schema xsd XML Schema xsd

    2. 在 XML 文档中引用 Schema 文件,通过 `xmlns:xsi` 命名空间和 `xsi:schemaLocation` 属性实现。 3. 验证 XML 文档:XML 解析器或验证工具会根据 Schema 对文档进行验证,发现并报告任何不符合 Schema 规则的问题...

    xml 和网络编程.docx

    * 引入 xsi 前缀:xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" * 引入 xsd 文件命名空间:xsi:schemaLocation="http://www.itcast.cn/xml student.xsd" * 为每一个 xsd 约束声明一个前缀,作为标识。...

    spring xml扩展

    Spring框架是Java开发中广泛应用的一个轻量级框架,它的核心特性是依赖注入(Dependency Injection,简称DI)和面向切面编程(Aspect-Oriented Programming,简称AOP)。XML扩展是Spring框架早期的主要配置方式,...

    聊天室(ActionScript 3.0实现)

    聊天室(ActionScript 3.0实现)&lt;?xml version="1.0" encoding="UTF-8"?&gt; -&lt;web-app xsi:schemaLocation=...

    XML_SCHEMA教程

    2. **数据类型系统**:XML Schema提供了丰富的内置数据类型,如`xs:string`、`xs:int`、`xs:date`等,同时允许自定义数据类型。 3. **复杂类型定义**:可以定义复杂的元素结构,包括嵌套元素、选择和组。 4. **...

    lantern:一个用于自动执行安全扫描的python库-源码

    灯笼Lantern是使用Python编写...filelist xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns="https://analysiscenter.veracode.com/schema/2.0/filelist"xsi:schemaLocation="https://analysiscenter.vera

    xml-schema

    总之,XML Schema 通过提供更多高级特性和数据类型,增强了XML文档的结构验证能力,同时也提高了开发人员的效率和文档的标准化程度。对于大型项目和需要高度结构化的XML数据,XML Schema是首选的验证工具。

    一个简单的Acegi入门实例

    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"&gt; &lt;!-- 指定Acegi资讯的设定档--&gt; &lt;context-param&gt; &lt;param-name&gt;contextConfigLocation...

    项目源码-java计算机配件报价系统项目

    【项目源码】-java计算机配件报价系统项目 ... xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"&gt; &lt;welcome-file&gt;/qiantai/default.

Global site tag (gtag.js) - Google Analytics