Hi everyone it has been a long time I was looking for the solution but even if I found some explanation it wasn't that clear.
I want to replace an URL in the web.xml with its key defined in URL.properties
here is the URL I want to replace in web.xml
<param-name>chainConfig</param-name>
<param-value>org/apache/struts/tiles/chain-config.xml</param-value>
In my properties file I have :
URL.chainconfig=org/apache/struts/tiles/chain-config.xml
So I want to use in my web.xml something like ${URL.chainconfig}
instead of the full URL.
Thanks in advance