可以把applicationContext.xml放到/WEB-INF/classes目录下使用
new ClassPathXmlApplicationContext("applicationContext.xml"); 来读取!
如果是在Web.xml中的话,需要配置Context Listener:
然后使用context-param指定配置文件的位置(可选,默认读取
/WEB-INF/applicationContext.xml)
最后使用WebApplicationContextUtils.getWebApplicationContext(servletContext)
在Servlet中获取容器的引用。
同意上面的,需要在web.xml中进行配置即可。