users@glassfish.java.net

Re: JSP auto recompile in deploy-dir

From: <glassfish_at_javadesktop.org>
Date: Thu, 20 Mar 2008 02:53:40 PST

You can configure whether a modified JSP gets compiled or not in the default-web.xml file. This file can be found in the config directory of your domain.

The initialization parameter "development" of the JspServlet must be set to "debug". This is the default value for a developer profile.

To be on the safe side you might wish to add the following lines to your JSP-servlet:
<init-param>
  <param-name>development</param-name>
  <param-value>true</param-value>
</init-param>
[Message sent by forum member 'writtmeyer' (writtmeyer)]

http://forums.java.net/jive/thread.jspa?messageID=264959