Could not open ServletContext resource [/WEB-INF/application

时间:2022-07-30 18:01:41

web .xml的配置文件,加入了listener监听器,使找不到web.xml文件

如果不特意指定参数名为contextConfigLoction的<context-parameter>元素,那么spring的ContextLoderListener监听器就会在/WEB-INF/下去寻找并加载该目录下的名为applicationContext.xml这个文件

因此如果要加载web.xml,需要添加一个context标签

<context>

  <param-name>contextConfigLocation</param-name>

  <param-value>classpath:web.xml (你想要加载的文件名) </param-value>

</context>