我的应用程序中有两个属性文件 1) config-default.properties 2) velocity.properties,两者都有一个属性值,就像
在文件 1 中,我有:
context.config.path = opt/htdocs/docroot/content
在文件 2 中,我有:
file.context.path = opt/htdocs/docroot/content
现在在这里,由于两个属性具有相同的值,我想给出文件 1 的键(名称)的名称,作为对文件 2 的属性值的引用,例如:
file.context.path =${context.config.path}
但我没有看到它在那里,我通过 appContext.xml 加载 config.properties 文件:
<context:property-placeholder
location="classpath:config-common-default.properties,classpath:config-default.properties,classpath:config.properties"
ignore-unresolvable="true" ignore-resource-not-found="true"/>
谁能帮帮我。