码迷,mamicode.com
首页 > 移动开发 > 详细

Spring的配置文件ApplicationContext.xml配置头文件解析

时间:2018-02-07 00:44:10      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:statistic   红色   clear   需要   b2c   lin   content   分享图片   encoding   

Spring的配置文件ApplicationContext.xml配置头文件解析

原创 2016年12月16日 14:22:43
技术分享图片技术分享图片技术分享图片
spring中的applicationContext.xml配置头文件解析
<?xmlversion="1.0"encoding="UTF-8"?>
<beansxmlns="http://www.springframework.org/schema/beans"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xmlns:tx="http://www.springframework.org/schema/tx"
     xmlns:aop="http://www.springframework.org/schema/aop"
     xmlns:context="http://www.springframework.org/schema/context"
     xsi:schemaLocation="
     http://www.springframework.org/schema/beans
     http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
     http://www.springframework.org/schema/context
     http://www.springframework.org/schema/context/spring-context-4.1.xsd
     http://www.springframework.org/schema/tx
     http://www.springframework.org/schema/tx/spring-tx-4.1.xsd
     http://www.springframework.org/schema/aop
     http://www.springframework.org/schema/aop/spring-aop-4.1.xsd
     ">
</beans>
首先要做的是导入相关jar包,这里一aop为例所以只说导入了aop相关的jar包
这四个jar包是必不可少的。
jar包下载地址:http://pan.baidu.com/s/1nvTPNRV
技术分享图片

配置头文件所引用的文件包(版本号要匹配上)

技术分享图片

步骤
(1)、下载spring-framework-4.1.6

(2)、eclipse中点击window-preferances,在弹出框中输入xml catalog,看到如下界面

 

技术分享图片

点击add

技术分享图片
从文件选择其中找到你所下载的spring-framework-4.16打开文件夹,然后打开schema文件夹
技术分享图片
该目录下就是你所要引入的相关标签的文件夹
技术分享图片
下面以aop标签为例,其他标签都是同样的操作步骤。
(1)、打开aop文件夹。然后选中spring-aop-4.1.xsd,点击打卡如图
技术分享图片
 
在这里需要特别注意的是location: F:\JavaIntegration\spring-framework-4.1.6.RELEASE-dist\spring-framework-4.1.6.RELEASE\schema\aop\spring-aop-4.1.xsd中的绿色背景的文字是与图中绿色框中的一样的,也就是版本一定要对应上,而红色框中的值就是上图中key的值。在这里特别说明的原因是有时我们会从网上复制头文件不知道其中的原理这样就会出现版本不对应的错误
技术分享图片

 注意!!!首先要保证 http://www.springframework.org/schema/beans/spring-beans.xsd 的约束文件Schema location要配置得有,不然其他的Schema location即使配置了也不会出来!!! 其次:key:的xsd文件最好不要写版本号

技术分享图片
 
到此aop的头文件就配置完了,其他头文件标签配置与此类似。

Spring的配置文件ApplicationContext.xml配置头文件解析

标签:statistic   红色   clear   需要   b2c   lin   content   分享图片   encoding   

原文地址:https://www.cnblogs.com/zhanghengscnc/p/8424598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!