Spring配置xml文件详解

Posted hello world

tags:

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

1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://www.springframework.org/schema/beans
5     http://www.springframework.org/schema/beans/spring-beans.xsd">
6 </beans>

第一行:声明此文件xml格式,版本1.0 编码 UTF-8格式

第二行:插入beans标签并引入一个命名空间xmlns="http://www.springframework.org/schema/beans"没有使用命名空间前缀

第三行:xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"声明一个命名空间"http://www.w3.org/2001/XMLSchema-instance"前缀为xsi,此命名空间为xml遵循w3的一个标准标签规范命名空间。

第四行:使用xsi前缀的命名空间属性schemaLocation指定一个命名空间和schema文件的位置,注意顺序。

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

数据层spring-dao.xml配置文件中C3P0连接池配置详解

Spring二 Bean详解

Spring MVC中,applicationContext.xml [ServletName]-servlet.xml配置文件在web.xml中的配置详解...

spring applicationContext.xml 配置文件 详解

Spring配置xml文件详解

Spring配置文件XML详解