关于Spring的web.xml

8 篇文章 0 订阅
5 篇文章 0 订阅

web.xml  术语叫做 部署描述符,在WEB-INF目录下面.web.xml文件会被Tomcat自动加载并读取,如果有其他目录下面的XML文件也要加载到Tomcat内存的话,一般也是在web.xml文件中配置,web.xml中通过contextConfigLocation配置spring

在Spring中,使用contextConfigLocation参数就会加载其他的xml配置文件,如果没有这个参数,spring默认加载web-info/applicationContext.xml文件.

但是在使用此参数之前,需要配置.ContextLoaderListener


<listener>
<listener-class> org.springframework.web.context.ContextLoaderListener<listener-class >   
</listener>


它会在创建时自动查找WEB-INF/ 下的applicationContext.xrnl 文件。如果要加载其他的xml文件,则通过contextConfigLocation进行配置

其代码格式为:

<context-param>
<param-name>contextConfigLocation</param-name> 
<param-value>
classpath:applicationContext.xml
classpath:conf/spring/applicationContext_core.xml,
classpath:conf/spring/applicationContext_dict.xml,
classpath:conf/spring/applicationContext_hibernate.xml,
</param-value>
</context-param>

这样既实现了spring中多配置文件的初始化。使用多配置文件,不仅能减小默认配置文件的大小,还有利于配置和项目的管理




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值