我在我的 Spring (3.1) XML 之一中定义了以下属性文件:
<context:property-placeholder location="classpath:MyConfigFile.properties"/>
我希望能够定义第二个可选属性文件,它将覆盖“MyConfigFile.properties”文件并被加载而不是它。
换句话说,我希望我的应用程序加载“MyConfigFile.properties”文件,但如果“StrogerConfigFile.properties”将在类路径中可用,它将被加载。
任何人都知道如何使用 Spring XML 来完成它?