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

前端之家收集整理的这篇文章主要介绍了class path resource [applicationContext.xml] cannot be opened because it does not exist前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用maven创建web工程,将Spring配置文件applicationContext.xml放在src/resource下,用eclipse编译时提示class path resource [applicationContext.xml] cannot be opened because it does not exist错误

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

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

原文链接:https://www.f2er.com/xml/293848.html

猜你在找的XML相关文章