是否有可能將spring.profiles.active
的application.properties
設置爲包含其他變量的值?顯然,我無法得到這個工作。將spring.profiles.active設置爲application.properties中變量的值
這裏是我想要的東西:
one=${APP_ONE:foo}
two=${APP_TWO:bar}
spring.profiles.active=${one},${two}
這裏,也是環境變量APP_ONE
和APP_TWO
應加以解釋和spring.profiles.active
結束。
然後,我希望能夠在標記中參考applicationContext.xml
。
對不起,如果我在這裏不夠清楚,但我不知道如何更精確。