您的位置:首页 > 编程语言 > Java开发

spring 配置中的头文件解析

2016-05-25 19:00 387 查看

1、Spring 头文件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:tx="http://www.springframework.org/schema/tx"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
...
</beans>

  

2、xmlns是xml命名空间,xmlns:xsi是指xml所遵守的标签规范

      XML Schema命名空间作用避免命名冲突,像Java中的package一样;将不同作用的标签分门别类。

      第一个xmlns是关于初始化bean的格式文件地址。

      第二个xmlns也是辅助初始化bean.

      第五个(xmlns:aop)是关于切面编程。

 3、spring2.0以前的版本是基于dtd的配置方式,之后的版本开始支持schema的配置,dtd的配置当bean属性繁杂的时就会显得臃肿,schema则将配置精简化

      使用schema需要引入相关的配置文件,上述头部文件引用了tx、context、aop等schema配置文件,也对应着要使用的spring模块。

 

 

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: