无法读取属性文件
我正在开发一个Web应用程序,在该应用程序中我想从应用程序外部(即系统驱动器上)存在的属性文件中检索值。 但在执行此操作时,我遇到了问题。有趣的是,如果我将属性文件放在类路径位置,那么应用程序可以正常工作。 我正在使用resin服务器3.0.23和带有spring 2.5.4 jars的spring mvc架构。我还在resin 4.0.9的resin升级版本上尝试过。我也遇到了同样的问题。
上述查询的resin服务器是否存在兼容性问题,或者是否有其他方法可以解决此问题?
请建议。
谢谢。
I am working on one web application in which i want to retrieve values from property files which are present outside of the application i.e on system drive.
but while doing this i am facing the problem.Interestingly if i put property files at class path location then application works properly.
I am using resin server 3.0.23 and spring mvc architecture with spring 2.5.4 jars.i am also tried it on resin upgraded version of resin 4.0.9. there also i am getting the same problem.
Is there any compatibility issue of resin server for above query or If there is any other way to solve this issue?
please suggest.
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想从系统上的任意路径读取属性文件,您需要执行类似的操作
如果您尝试通过调用
getResource()
或getResourceAsStream() 来加载属性文件
,您的属性文件应该位于可通过类加载器访问的某个位置,通常位于类路径上。检查文档中的 Class.getResource 和 ClassLoader.getResourceIf you want to read a properties file from an arbitrary path on the system you need to do something like
If you are trying to load the properties file with calls to
getResource()
orgetResourceAsStream()
, your properties file should be somewhere accessible from a ClassLoader, usually on the classpath. Check the docs for Class.getResource and ClassLoader.getResource