java – 为什么FileSystemXmlApplicationContext会对存在的文件抛出FileNotFoundException

前端之家收集整理的这篇文章主要介绍了java – 为什么FileSystemXmlApplicationContext会对存在的文件抛出FileNotFoundException前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在运行以下代码
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操作系统)

任何人都可以建议这里有什么问题吗?

解决方法

尝试使用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警告

原文链接:https://www.f2er.com/java/126817.html

猜你在找的Java相关文章