Spring xml配置 名称解释

Posted chy19911123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring xml配置 名称解释相关的知识,希望对你有一定的参考价值。

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd">


</beans>

我们在配置spring xml 的bean 的时候,会看到xmlns  xmlns:xsi  xsi:schemaLocation 这几个配置,一般都是直接拷贝,并不知晓具体含义,故此处对含义做下解析,弥补下空白的基础知识。

xmlns

xmlns 的全称为 xml namespace,即 xml 命名空间,这个很好理解,和 java 中 package 和 c# 中 namespace 的概念基本一致,起的作用也基本一致:区分重复元素

xmlns 格式定义如下:
xmlns[:name] = "uri"

我们可以自己定义结构,避免冲突,然后需要指定下xmlns 对应的xsi:schemaLocation

xsi:schemaLocation 其实就是

"http://www.springframework.org/schema/beans

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

参考文档:

关于XML文档的xmlns、xmlns:xsi和xsi:schemaLocation-阿里云开发者社区

xmlns, xmlns:xsi, xsi:schemaLocation 解释 - feshfans - 博客园

以上是关于Spring xml配置 名称解释的主要内容,如果未能解决你的问题,请参考以下文章

Spring xml配置 名称解释

spring mvc 中web.xml配置信息解释

Spring根据XML配置文件 p名称空间注入属性

spring的xml配置文件的xml文件头详解

Spring3 MVC 注解---注解基本配置及@controller和 @RequestMapping 常用解释(转)

Spring+mybatis+struts框架整合的配置具体解释