#xml配置文件的根元素含义

xml配置文件的根元素含义

  • xml配置文件的根元素含义
    • xmlns
      • 产生原因
      • xmlns属性
    • xmlnsxsi
    • xmlnsaop
    • XSD

以下是xml配置文件常见的根元素中的配置:
- xmlns
- xmlns:xsi
- xmlns:aop
- xmlns:tx
- xmlns:context
- xmlns:task
- xsi:schemalLocation


例如:spring配置文件:applicationContext.xml

"http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:context="http://www.springframework.org/schema/context" xmlns:task="http://www.springframework.org/schema/task"
    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 
    http:

你可能感兴趣的:(spring)