On Fri, 27 Jun 2014 02:01:29 -0300, Claude Andrew
wrote:
d'oh. I fixed it myself. It turns out that setting the app.properties
setting
tapestry.production-mode = false
did not work but the following did:
That's the expected behavior. Symbol values aren't looked up from
app.properti
It's usually better to supply this as a system property (eg.
-Dtapestry.production-mode = false) at runtime. For Jetty in Eclipse, put it in
VM Arguments, for Tomcat put it in CATALINA_OPTS, for JBOSS put it in
JAVA_OPTS, etc.
Geoff
On 27 Jun 2014, at 3:01 pm, Claude Andrew wrote:
> d'oh. I
d'oh. I fixed it myself. It turns out that setting the app.properties
setting
tapestry.production-mode = false
>
did not work but the following did:
AppModule.contributeApplicationDefaults(...){
> configuration.add(SymbolConstants.PRODUCTION_MODE, false);
> ...
> }
I don't know what made me