gpt4 book ai didi

spring - FileNotFoundException..Classpath 资源在 spring 中找不到?

转载 作者:行者123 更新时间:2023-12-04 06:27:56 26 4
gpt4 key购买 nike

我在 中有这样的代码Main.java :

AbstractApplicationContext context  = new ClassPathXmlApplicationContext("spring-config.xml");

直到最近它还在工作,但我不知道为什么它开始失败并出现以下异常:

Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [spring-config.xml]; nested exception is java.io.FileNotFoundException: class path resource [spring-config.xml] cannot be opened because it does not exist



spring-config.xml src/main/resources 文件夹。

其实我想了解注释:@Postconstruct 和@Predestroy,所以我将构建路径从 Jdk 1.5 更改为 Jdk 1.6。

从那以后问题就开始了……

任何线索为什么它不起作用?

注意:如果有人想查看我的项目结构,请点击此链接
http://code.google.com/p/javapracticeram/source/browse/trunk/SpringExample/

编辑: alt text

最佳答案

看着 your classpath你排除 src/main/resourcessrc/test/resources :

    <classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources"/>
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources"/>

有什么原因吗?尽量不要排除到 spring-config.xml 的类路径:)

关于spring - FileNotFoundException..Classpath 资源在 spring 中找不到?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3433109/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com