首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

web.xml配置spring配置文件途径

2013-10-22 
web.xml配置spring配置文件路径分类: SSH在web.xml中加入listenerlistener-classorg.springframework.

web.xml配置spring配置文件路径


分类: SSH

在web.xml中加入
<listener>
        <listener-class>
            org.springframework.web.context.ContextLoaderListener
        </listener-class>
</listener>

这样系统会自动读取/WEB-INF/applicationContext.xml


如果自己定义文件名,还需要增加
<context-param>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>

  </context-param>

</context-param>

此时的applicationContext.xml在src目录下

热点排行