为什么读取applicationContext.xml文件时报错

2024-11-28 17:37:42
推荐回答(1个)
回答1:

l放到/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中获取容器的引用。