gpt4 book ai didi

java - eclipse spring 中正确的文件路径是什么

转载 作者:太空宇宙 更新时间:2023-11-04 09:58:53 26 4
gpt4 key购买 nike

我正在编写 Spring 简介类(class),但我的 SpringConfig.xml 文件路径有问题。如图所示,我只是将它作为冰雹添加到任何地方,但这也不起作用:

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

我的路:

enter image description here

主要方法代码:

public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("SpringConfig");
}

最佳答案

请不要忘记添加文件扩展名“.xml”,spring将从src/main/resource读取它

public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("SpringConfig.xml");


}

关于java - eclipse spring 中正确的文件路径是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53752889/

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