我使用apache駱駝2.15.1,我有三個屬性文件,這是在類路徑中的環境特定像myprop.properties, myprop-enva.properties, myprop-envb.properties.
我在camelcontext中使用propertyplaceholder,我能夠加載myprop.properties。駱駝propertyplaceholder環境特定文件
我不知道如何加載myprop-enva.properties當WebSphere env.prop = _enva
我現在的配置是這樣的..
<propertyPlaceholder location="classpath:myprop.properties" //Here I need to modify to make it work
id="placeholder1" />
我試圖改變爲location="classpath:myprop${env.prop}.properties"
,但它沒有工作。
目前我們使用的彈簧與駱駝,不知道我能與Spring使用藍圖的更多細節。第二個選項不適合我,因爲它打破了部署團隊的指導方針(在我的項目中)..感謝解決方案@Alelxey – bakki