Maven Could not open ServletContext resource [/WEB-INF/applicationContext.xml]
Posted 大梦千古
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Maven Could not open ServletContext resource [/WEB-INF/applicationContext.xml]相关的知识,希望对你有一定的参考价值。
因此:maven中,配置文件的读取应有下列红字两部分,缺一不可。
不是maven项目时,可以都不写。。。。。。。。
<context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/classes/dispatcher-servlet.xml</param-value> </context-param> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <!--spring中唯一的servlet 转发到control层--> <servlet-name>dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!--springmvc默认配置的名字:--> <!--<servlet-name> springMVC<servlet-name> + -servlet--> <!--设置配置文件--> <init-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/classes/dispatcher-servlet.xml</param-value> <!--或<param-value>/WEB-INF/XXX.xml</param-value>--> </init-param> <load-on-startup>1</load-on-startup> </servlet>
以上是关于Maven Could not open ServletContext resource [/WEB-INF/applicationContext.xml]的主要内容,如果未能解决你的问题,请参考以下文章
java.io.FileNotFoundException: Could not open ServletContext resource [/db.properties]
maven -- 解决“Could not calculate build plan”问题
maven解决“Could not calculate build plan”问题
Maven异常:Could not find artifact