Hi all,<br><br>Is there a way to specify the file substitution propery as something configurable? So I would not do<br><pre>&lt;configuration&gt;<br><br>  &lt;substitutionProperty file=&quot;variables1.properties&quot; /&gt;<br>
</pre>but<br><br><pre>&lt;configuration&gt;<br><br>  &lt;substitutionProperty file=&quot;<b>${logback.properties}</b>&quot; /&gt;<br><br><br></pre>where in Java I would have to specify something like<br><br>&nbsp;&nbsp; java Main -Dlogback.properties=c:/project/Main/main.properties<br>
<br>to be able to run my application?<br>Typically I want to have one configuration file, but sometimes I use multiple files to be able to turn on/off certain functionalities.<br><br>I&#39;m also thinking of moving the logback properties into my application properties file (not sure yet). <br>
This configuration option would allow me to achieve this.<br><br>Thanks, Natan<br>