web.xml 通过contextConfigLocation配spring 的方式

本文详细介绍了如何通过调整web.xml配置,实现Spring与Struts2框架在同一项目中并行部署,并解释了配置上下文参数、多配置文件加载以及web.xml中classpath与classpath*的区别。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

web.xml 通过contextconfiglocation配置spring 的方式
ssi框架配置文件路径问题:

struts2的 1个+n个 路径:src+src(可配置) 名称: struts.xml + n
spring 的 1个 路径: src 名称: applicationcontext.xml
ibatis 的 1个+n个 路径: src+src(可配置) 名称: sqlmapconfig.xml + n


部署到tomcat后,src目录下的配置文件会和class文件一样,自动copy到应用的 classes目录下

spring的 配置文件在启动时,加载的是web-info目录下的applicationcontext.xml,
运行时使用的是web-info/classes目录下的applicationcontext.xml。

配置web.xml使这2个路径一致:


<context-param>
<param-name>contextconfiglocation</param-name>
<param-value>/web-inf/classes/applicationcontext.xml</param-value>
</context-param>

多个配置文件的加载
<context-param>
<param-name>contextconfiglocation</param-name>
<param-value>
classpath*:conf/spring/applicationcontext_core*.xml,
classpath*:conf/spring/applicationcontext_dict*.xml,
classpath*:conf/spring/applicationcontext_hibernate.xml,
classpath*:conf/spring/applicationcontext_staff*.xml,
classpath*:conf/spring/applicationcontext_security.xml
classpath*:conf/spring/applicationcontext_modules*.xml
classpath*:conf/spring/applicationcontext_cti*.xml
classpath*:conf/spring/applicationcontext_apm*.xml
</param-value>
</context-param>

contextconfiglocation 参数定义了要装入的 spring 配置文件。



首先与spring相关的配置文件必须要以"applicationcontext-"开头,要符合约定优于配置的思想,这样在效率上和出错率上都要好很多。
还有最好把所有spring配置文件都放在一个统一的目录下,如果项目大了还可以在该目录下分模块建目录。这样程序看起来不会很乱。
在web.xml中的配置如下:
xml代码
<context-param>
<param-name>contextconfiglocation</param-name>
<param-value>classpath*:**/applicationcontext-*.xml</param-value>
</context-param>

"**/"表示的是任意目录;
"**/applicationcontext-*.xml"表示任意目录下的以"applicationcontext-"开头的xml文件。
你自己可以根据需要修改。最好把所有spring配置文件都放在一个统一的目录下,如:

<!-- spring 的配置 -->
<context-param>
<param-name>contextconfiglocation</param-name>
<param-value>classpath:/spring/applicationcontext-*.xml</param-value>
</context-param>



web.xml中classpath:和classpath*:, 有什么区别?



classpath:只会到你的class路径中查找找文件;
classpath*:不仅包含class路径,还包括jar文件中(class路径)进行查找.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值