我有 beans xml 文件,它加载多个属性文件来创建它的 beans。所有这些属性文件都位于根文件夹下,例如 root/abc/abc.properties 、 root/xyz/some.properties 等。
<bean id="x".....
....
<util:properties id="properties" location="${config.base.dir}/abc/abc.properties" />
......
</bean>
<bean id="y".....
....
<util:properties id="properties" location="${config.base.dir}/xyz/some.properties" />
......
</bean>
我想覆盖将 config.base.dir 的值放在顶部的某个位置,以便我可以不断更改根位置,这是否可以通过在顶部定义一些属性来实现?