I would love to get loading of properties files to "recurse".
For example, a properties file:
------------------------------------
dist.jdbc.hostname=10.87.8.206
dist.jdbc.sid=q60w10t3
dist.jdbc.url=jdbc:oracle:thin:@${dist.jdbc.hostname}:1521:${dist.jdbc.sid}
and this perl code to print that last property:
------------------------------------
$value = $properties->getProperty( "dist.jdbc.url" );
print "dist.jdbc.url=$value\n";
produces this output:
------------------------------------
dist.jdbc.url=jdbc:ws-oracle:thin:@${dist.jdbc.hostname}:1521:${dist.jdbc.sid}
Is there a way to get the definitions within the definitions evaluated? Thanks.