Spring里面applicationContext.xml文件能不能改成其他文件名

2023-07-06   


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


相关内容:

  1. Spring里面如何定义hibernate mapping
  2. Spring里面如何配置数据库驱动
  3. Spring如何获取Bean
  4. Spring面试:什么是Spring, 它有什么特点
  5. Spring面试题库