我正在使用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
这里可能出现什么问题。