如何加载外部webapps文件夹Spring4.0中存在的属性文件?

时间:2015-03-15 02:22:02

标签: java spring spring-mvc

我正在尝试加载属性文件

以下是我在Spring.xml中的代码行&org.springframework.web.servlet.DispatcherServlet'

<context:property-placeholder location="/var/opt/vmware/comeproperties/application.properties" />

我总是得到FileNotFoundException。

我意识到应用程序总是试图在附加了附加内容后从类路径中查看&#39; /&#39;。

您能告诉我加载webapps之外的属性文件的最佳方法是什么。

1 个答案:

答案 0 :(得分:0)

尝试将“file:”添加到路径的开头,如:

<context:property-placeholder location="file:${user.home}/folder/test/app.properties" />