spring找不到applicationContext.xml文件 -- 未解决啊

2024年11月28日 14:29
有2个网友回答
网友(1):

可以把applicationContext.xml放到/WEB-INF/classes目录下使用
new ClassPathXmlApplicationContext("applicationContext.xml"); 来读取!

如果是在Web.xml中的话,需要配置Context Listener:

org.springframework.web.context.ContextLoaderListener

然后使用context-param指定配置文件的位置(可选,默认读取
/WEB-INF/applicationContext.xml)

contextConfigLocation
/WEB-INF/applicationContext*.xml


最后使用WebApplicationContextUtils.getWebApplicationContext(servletContext)
在Servlet中获取容器的引用。

网友(2):

同意上面的,需要在web.xml中进行配置即可。