Recently I did some research on how to manage the java property file in a better way. I found the Apache Common Configuration API is actually really good.
I found the following 3 features are really powerful.
1. Variable interpolation
Like using a variable in Ant, you can use variable in a property file, and Apache Common Configuration API proivide API to expand them on the fly.
code sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* variable.properties | |
user.name=steve | |
user.password=pass | |
credential.string=${user.name}:${user.password} | |
*/ | |
public void test_variable_interpolation() { | |
try { | |
PropertiesConfiguration config = new PropertiesConfiguration( | |
"variable.properties"); | |
PropertiesConfiguration extConfig = (PropertiesConfiguration) config | |
.interpolatedConfiguration(); | |
Iterator<String> iter = extConfig.getKeys(); | |
while (iter.hasNext()) { | |
String key = iter.next(); | |
Object value = extConfig.getProperty(key); | |
System.out.println("key=" + key + ",value=" + value); | |
} | |
} catch (ConfigurationException e) { | |
// TODO Auto-generated catch block | |
e.printStackTrace(); | |
} | |
} |
2. Include other property files in a property file
check this link for details.
property example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#config.properties | |
user=amanda | |
include=${user}.properties | |
connection.string=${user.name}:${user.password} | |
#amanda.properties | |
user.name=Amanda Zhu | |
user.password=8888 |
Code example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void test_include_singl_file() { | |
try { | |
PropertiesConfiguration config = new PropertiesConfiguration( | |
"config.properties"); | |
PropertiesConfiguration extConfig = (PropertiesConfiguration) config | |
.interpolatedConfiguration(); | |
Iterator<String> iter = extConfig.getKeys(); | |
while (iter.hasNext()) { | |
String key = iter.next(); | |
Object value = extConfig.getProperty(key); | |
System.out.println("key=" + key + ",value=" + value); | |
} | |
} catch (ConfigurationException e) { | |
// TODO Auto-generated catch block | |
e.printStackTrace(); | |
} | |
} |
3. combine multiple property file into one property object
details are in here.
Property example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#user.properties | |
user.name=steve | |
user.password=nobody | |
#app.properties | |
connection.string=${user.name}:${user.password} | |
Code example:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public void test_load_2_files() { | |
CompositeConfiguration config = new CompositeConfiguration(); | |
try { | |
config.addConfiguration(new PropertiesConfiguration( | |
"user.properties")); | |
config.addConfiguration(new PropertiesConfiguration( | |
"app.properties")); | |
Configuration extConfig = config.interpolatedConfiguration(); | |
Iterator<String> iter = extConfig.getKeys(); | |
while (iter.hasNext()) { | |
String key = iter.next(); | |
Object value = extConfig.getProperty(key); | |
System.out.println("key=" + key + ",value=" + value); | |
} | |
} catch (ConfigurationException e) { | |
e.printStackTrace(); | |
} | |
} |
I believe above the 3 features will greatly simply the java property file management.
hi
ReplyDeleteI need know where properties files need to placed.
I my example i have tired placing property file com.yourcompany.application.resources
how do i will use this in the above code.
with regrads
ram
you just need to put your property file under the class path
ReplyDeleteGreeat blog you have
ReplyDelete