【小白日记】Spring随笔 class path resource [.xml] cannot be opened because it does not exist 原因及解决办法...

如题,当日在我对照相关教程学习Spring 使用ClassPathXmlApplicationContext时候遇到如下问题

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

【小白日记】Spring随笔 class path resource [.xml] cannot be opened because it does not exist 原因及解决办法..._第1张图片
啥?找不到Xml文件?? 于是我又仔细检查了一下xml文件
【小白日记】Spring随笔 class path resource [.xml] cannot be opened because it does not exist 原因及解决办法..._第2张图片
对的呀?我这里也的确有xml文件呀?那为什么?

解决办法及原因

后来经过搜索引擎查阅了一些前辈的资料 发现导致出错的原因还是错在xml的位置摆放上面。
再上一篇博客中 当我使用

Resource r = new FileSystemResource("helloMessage.xml");

语法时 把Xml放置到project 根目录 没有任何问题
但是不同于上次的的时这次在我使用

ApplicationContext applicationContext = new ClassPathXmlApplicationContext("spring.xml");

这中方法调用xml时 放在根目录就行不通了 这时候我们应该把 xml文件放到Src目录下即可
【小白日记】Spring随笔 class path resource [.xml] cannot be opened because it does not exist 原因及解决办法..._第3张图片
运行程序
【小白日记】Spring随笔 class path resource [.xml] cannot be opened because it does not exist 原因及解决办法..._第4张图片
解决!

转载于:https://www.cnblogs.com/WeiHaoLee/p/10823341.html

你可能感兴趣的:(java,开发工具)