class path resource [applicationContext.xml] cannot be opened because it does not exist

来源:互联网 发布:屏蔽一段ip的js代码 编辑:程序博客网 时间:2024/05/21 06:00

maven创建web工程Spring配置文件找不到问题解决方案

使用maven创建web工程,将spring配置文件applicationContext.xml放在src/resource下,编译时提示class path resource [applicationContext.xml] cannot be opened because it does not exist错误。但是用mvn clean package命令编译时成功的。

web配置文件

 <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath:applicationContext.xml</param-value>
 </context-param>

 <listener>
  <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
 </listener>

发现是由于classpath不是指向resource路径,导致一直找不到文件。需要在classpath后面加个*,这样就解决问题了。

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext.xml</param-value>
</context-param>


阅读全文
0 0
原创粉丝点击