我想加载每台机器/主机名的配置属性。
我有几个属性文件作为资源,我希望Apache Camel加载特定属性文件,具体取决于计算机的主机名。
主机名1 :sql-hostname1.properties,paths-hostname1.properties
Hostname2 :sql-hostname2.properties,paths-hostname2.properties
我正在使用Camel propertyPlaceholder
<propertyPlaceholder id="placeholder"
location="classpath:sql-hostname1.properties,
classpath:paths-hostname1.properties" />
我尝试将主机名作为环境属性${env:hostname}
或系统属性${hostname}
,但都不起作用。
有什么想法吗?