Hi We are using CAS within different environments, like for example
- development - integration - staging - production and inside deployerConfigContext.xml we have some custom bean properties, but depending on the environment have different values, e.g. <!-- Test environment --> <property name="baseUrl" value="https://test.wyona.com/"/> <!-- Production environment --> <property name="baseUrl" value="https://www.wyona.com/"/> Every time we make changes on this file, we need to remind ourselves that we have to comment or uncomment the property with the right value depending on the environment where we deploy the file. Which of course leads to errors ;-) It would be nice to have some kind of environment/profile functionality within CAS, like for example <property name="baseUrl" value="https://test.wyona.com/" env="test"/> <property name="baseUrl" value="https://test.wyona.com/" env="prod"/> Is this possible somehow? Or how do others solve this? Thanks Michael -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
