You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tapestry.apache.org by Argo Vilberg <wi...@gmail.com> on 2008/08/01 12:15:43 UTC

how to set tapestry-5.0.13 to development mode

tapestry.production-mode A flag (true or false) indicating whether the
application is running in production or in development. The default is true,
which means that runtime exceptions are not reported with full detail (only
the root exception message is displayed, not the entire stack of exceptions,
properties and other information shown in development mode).


And i add this rows to AppModule.java

    public static void contributeApplicationDefaults(
            MappedConfiguration<String, String> configuration)
    {
        configuration.add(SymbolConstants.PRODUCTION_MODE, "false");
    }




This option has no success.



Any ideas?



Argo

Re: how to set tapestry-5.0.13 to development mode

Posted by José Paumard <Jo...@orange.fr>.
Argo,

There is a parameter in your web.xml file :
          <context-param>
              <param-name>tapestry.production-mode</param-name>
              <param-value>false</param-value>
          </context-param>

Maybe you can try that one.

José


Argo Vilberg a écrit :
> tapestry.production-mode A flag (true or false) indicating whether the
> application is running in production or in development. The default is true,
> which means that runtime exceptions are not reported with full detail (only
> the root exception message is displayed, not the entire stack of exceptions,
> properties and other information shown in development mode).
>
>
> And i add this rows to AppModule.java
>
>     public static void contributeApplicationDefaults(
>             MappedConfiguration<String, String> configuration)
>     {
>         configuration.add(SymbolConstants.PRODUCTION_MODE, "false");
>     }
>
>
>
>
> This option has no success.
>
>
>
> Any ideas?
>
>
>
> Argo
>
>   


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@tapestry.apache.org
For additional commands, e-mail: users-help@tapestry.apache.org