码迷,mamicode.com
首页 > 移动开发 > 详细

class path resource [spring/ApplicationContext-springmvc.xml] cannot be opened because it does not exist

时间:2017-08-12 11:47:11      阅读:585      评论:0      收藏:0      [点我收藏+]

标签:config   not   resource   文件   open   value   use   oca   pat   

配置如下:

<init-param>
   <param-name>contextConfigLocation</param-name>
   <param-value>classpath:spring/ApplicationContext-springmvc.xml</param-value>
  </init-param>

原因是:IDE认为spring文件夹是在source下的,所以找不到

解决方案:

在classpath后面加个*

如下:

<init-param>
   <param-name>contextConfigLocation</param-name>
   <param-value>classpath*:spring/ApplicationContext-springmvc.xml</param-value>
  </init-param>

class path resource [spring/ApplicationContext-springmvc.xml] cannot be opened because it does not exist

标签:config   not   resource   文件   open   value   use   oca   pat   

原文地址:http://www.cnblogs.com/sunshinekevin/p/7349575.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!