zoukankan      html  css  js  c++  java
  • xml配置文件解释

    XML 指可扩展标记语言(EXtensible Markup Language)

    xmlns:是指XML命名空间 ( XML Namespace )

    XSD是指XML结构定义 ( XML Schemas Definition ) XML Schema 是DTD的替代品。XML Schema语言也就是XSD。

    下面xml文件中下划线标注的是每个命名空间的唯一标识名,比如xmlns:xsi表示xsi命名空间,xmlns后面没有命名空间名称的,表示默认的命名空间

    <?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>
    schemaLocation是xmlns:xsi里面的属性。

    https://www.cnblogs.com/zhao1949/p/5652167.html

    -----------------------------------------------------------------------------

  • 相关阅读:
    python闭包和装饰器(转)
    python生成器(转)
    python中迭代器(转)
    python中xrange和range(转)
    python函数式编程(转)
    图论
    查找算法
    优先队列和堆排序(转)
    手动爬虫之淘宝笔记本栏(ptyhon3)
    手动爬虫之报头及代理封装类(python3)
  • 原文地址:https://www.cnblogs.com/Alwaysbecoding/p/9777165.html
Copyright © 2011-2022 走看看