2013-02-05 219 views
-1

我试图在日食上用spring创建一个hello world。但我得到了一个错误:Hello World with Spring

INFO: Loading XML bean definitions from class path resource 
[src/com/spr/main/contextApplication.xml] 
Exception in thread "main" org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from class path resource [src/com/spr/main/contextApplication.xml]; nested exception is java.io.FileNotFoundException: class path resource [src/com/spr/main/contextApplication.xml] cannot be opened because it does not exist 
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:341) 
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:302) 
at org.springframework.beans.factory.xml.XmlBeanFactory.<init>(XmlBeanFactory.java:73) 
at org.springframework.beans.factory.xml.XmlBeanFactory.<init>(XmlBeanFactory.java:61) 
at com.spr.main.Main.main(Main.java:15) 
Caused by: java.io.FileNotFoundException: class path resource [src/com/spr/main/contextApplication.xml] cannot be opened because it does not exist 
at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:141) 
at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:328) 
... 4 more 

我曾尝试:

XmlBeanFactory beanFactory = new XmlBeanFactory(new ClassPathResource("\\src\\com\\spr\\main\\contextApplication.xml")); 

XmlBeanFactory beanFactory = new XmlBeanFactory(new ClassPathResource("\\src\\com\\spr\\main\\contextApplication.xml")); 

和contextApplication.xml路径为src/COM/SPR /主/

+0

给出错误的代码是什么? –

回答

2

更改您的声明

XmlBeanFactory beanFactory = new XmlBeanFactory(new ClassPathResource("\\src\\com\\spr\\main\\contextApplication.xml")); 

XmlBeanFactory beanFactory = new XmlBeanFactory(new ClassPathResource("com\\spr\\main\\contextApplication.xml")); 

不要忘了查看文件名。

+0

Thxs现在工作正常 – Jjreina

+0

伟大的祝贺去接受。 –

+1

他的意思是“接受这个答案” - 习惯上,在StackOverflow上,标记为“接受”满足您的问题的答案。这样做会提高花时间回答的人的声誉,如果你不经常这样做,人们就会停止回答你的问题。 – arcy