1.出现IOException parsing XML document from class path resource [applicationContext.xml]; nested exception is java.io.FileNotFoundException: class path resource [applicationContext.xml] cannot be opened because it does not exist
上面这张图是我的目录,它一直说找不到applicationContext.xml文件,我就纳闷了,他一直在啊,路径没毛病啊,结果我百度了好久发现在classes在复制一个进去就可以。如图
2.解决方案
将applicationContext.xml文件放入到target—>classes包下即可
报错:IOException parsing XML document from class path resource [applicationContext.xml]; nested except
于 2020-10-10 14:17:02 首次发布
本文介绍了解决Spring框架中applicationContext.xml配置文件找不到的问题。通常情况下,该文件应放置于项目的src/main/resources目录下,确保在项目打包时能够被正确地包含进target/classes路径中。
摘要由CSDN通过智能技术生成