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

SSM整合-Spring里面applicationContext.xml文件能不能改成其他文件名?

时间:2020-04-29 15:13:56      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:一个   ring   alt   value   spring   framework   ram   servlet   xml文件   

ContextLoaderListener是一个ServletContextListener,它在你的web应用启动的时候初始化。缺省情况下,它会在WEB-INF/applicationContext.xml文件找Spring的配置。你可以通过定义一个元素名字为”contextConfigLocation”来改变Spring配置文件的位置。示例如下:
————————————————

技术图片
或者

<!--    spring的监听器 默认只加载web-inf下的applicationContext.xml-->
  <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
  </context-param>

SSM整合-Spring里面applicationContext.xml文件能不能改成其他文件名?

标签:一个   ring   alt   value   spring   framework   ram   servlet   xml文件   

原文地址:https://www.cnblogs.com/islch/p/12801695.html

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