web.xml中的contextConfigLocation在spring中的作用

Posted limeOracle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web.xml中的contextConfigLocation在spring中的作用相关的知识,希望对你有一定的参考价值。

在web.xml中通过contextConfigLocation配置spring,

contextConfigLocation参数定义了要装入的 Spring 配置文件。

如果想装入多个配置文件,可以在 <param-value>标记中用逗号作分隔符或通配符。

 

在web.xml里配置Listener

web.xml 代码如下:  

<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring/app-*.xml</param-value>
</context-param>

app-context.xml

<context:component-scan base-package="com.xdt.ibs" />

 

以上是关于web.xml中的contextConfigLocation在spring中的作用的主要内容,如果未能解决你的问题,请参考以下文章

(转)web.xml中的contextConfigLocation在spring中的作用

Spring Servlet 项目的 web.xml 中加载 contextConfigLocation 的顺序

javaEE中的hibernate配置笔记

SSM框架中web.xml遇到了奇怪的问题

web.xml中的配置

web.xml配置