I would like to find an expedient way to switch between multiple .properties files for different deployment configurations.
My initial inclination is to create a separate file, selector.properties, whose single property is used to determine the proper file:
properties.file=deploymentConfiguration1.properties
...for one deployment, or:
properties.file=deploymentConfiguration2.properties
...for the next deployment.
Another developer on my team has an ApplicationProperties class wherein:
private static final String PROP_FILE="someFileName.properties";
...is the means to do this. However, I want to switch properties files without rebuilding! Thanks in advance for your input.
EDIT: Maybe I should have been more clear initially, but this is for a set of web services packaged as an AAR. I will just drop it into the web server and let Tomcat and Axis2 do their thing.
So, I don't think some of the answers with command-line params will work in this context.
=)– pianoman Feb 1 '11 at 16:06