Hi in http://tapestry.apache.org/tapestry5.1/guide/conf.html said that there
are 3 place where you can configure tapestry :
- app module
- web.xml
- passing it as a parameter to the JVM using the -D option
I was wondering what kind of precedence between this 3 option. For example
if i set production mode to false in my app module
configuration.add(SymbolConstants.PRODUCTION_MODE, "false");
And then set it true in the web.xml
<context-param>
<param-name>tapestry.production-mode</param-name>
<param-value>true</param-value>
</context-param>
Would the xml value override the appmodule configuration ?
Thanks,
Abangkis
--