如何从位于tomcat conf文件夹中的属性文件中读取值

时间:2016-06-13 21:28:54

标签: java spring tomcat

我正在使用Spring MVC应用程序。

我有一些较旧的项目,我试图遵循相同的结构。因此,tomcat conf 文件夹中有一个properties文件。我必须从中读取值。我的STS在运行时指向那个tomcat(它使用相同的服务器)

所以我做了以下更改,

// place the below in my Java class
@Value( "${profileImagePath}" )
private String imagePath;   

并在servelet-config.xml的底部放置了以下代码,

<context:property-placeholder location="file:${catalina.home}/conf/app.properties" />

没有错误,但当我尝试打印值imagePath时,它会打印为null

这里可能出现什么问题。

0 个答案:

没有答案