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

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

2017-09-06 12:56 489 查看
刚开始学习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配置 文件。

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