[Spring] Spring配置文件头部xmlns配置

来源:互联网 发布:cramer法则求矩阵的逆 编辑:程序博客网 时间:2024/06/06 21:07

刚开始学习Spring或许都对其配置文件头部的各种配置表示困惑,先贴出一个比较常见的头部文件

<beans xmlns="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"         xsi:schemaLocation="                           http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd                             http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd                             http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd                             http://www.springframework.org/schema/context <a href="http://www.springframework.org/schema/context/spring-context-3.0.xsd">http://www.springframework.org/schema/context/spring-context-3.0.xsd</a>"         >  

对于使用spring的朋友,对这些应该再熟悉不过了,使用spring1年多了,今天偶尔间总算知道这些配置文件是干什么的了,spring2.0以前的版本是基于dtd的配置方式,之后的版本开始支持schema的配置,dtd的配置当bean属性太多或者复杂的时候,就会显得臃肿,这时就可以采用schema来精简一下了。

要使用schema就要引入相关的schema了,而上述的头部配置,观察下相应大家应该明白都引入了什么了,分别是aop tx context的引入,没错,头部这么一大串其实就是引入要使用的schema配置 文件。

本文转载自文章。