为什么FileSystemXmlApplicationContext会在存在的文件上抛出FileNotFoundException

时间:2012-06-18 13:36:20

标签: java linux spring

我正在运行以下代码:

new FileSystemXmlApplicationContext("/data/farm/Server/confData/1000004/contex.xml")

然后抛出

java.io.FileNotFoundException: class path resource [data/farm/Server/confData/1000004/contex.xml] cannot be opened because it does not exist

文件存在,我可以

cat /data/farm/Server/confData/1000004/contex.xml

并查看其内容。 同样在Windows中这段代码正在运行 - 问题出在linus(我有ubuntu os)

任何人都可以告诉我这里有什么问题吗?

1 个答案:

答案 0 :(得分:18)

尝试使用Url创建FileSystemXmlApplicationContext,例如:

new FileSystemXmlApplicationContext("file:/data/farm/Server/confData/1000004/contex.xml");

有关进一步说明,请参阅:http://static.springsource.org/spring/docs/3.0.0.M3/spring-framework-reference/html/ch05s07.html 5.7.3 FileSystemResource警告