Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@www.apache.org Received: (qmail 44224 invoked from network); 18 Sep 2004 17:09:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 18 Sep 2004 17:09:45 -0000 Received: (qmail 90089 invoked by uid 500); 18 Sep 2004 17:09:33 -0000 Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 90036 invoked by uid 500); 18 Sep 2004 17:09:33 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Tomcat Developers List" Reply-To: "Tomcat Developers List" Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 90023 invoked by uid 500); 18 Sep 2004 17:09:33 -0000 Received: (qmail 90020 invoked by uid 99); 18 Sep 2004 17:09:33 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sat, 18 Sep 2004 10:09:33 -0700 Received: (qmail 44157 invoked by uid 1135); 18 Sep 2004 17:09:31 -0000 Date: 18 Sep 2004 17:09:31 -0000 Message-ID: <20040918170931.44156.qmail@minotaur.apache.org> From: remm@apache.org To: jakarta-tomcat-catalina-cvs@apache.org Subject: cvs commit: jakarta-tomcat-catalina/webapps/docs jasper-howto.xml X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N remm 2004/09/18 10:09:31 Modified: webapps/docs jasper-howto.xml Log: - The defaults for Jasper change a bit. - Also add the genAsCharArray parameter. Revision Changes Path 1.16 +7 -13 jakarta-tomcat-catalina/webapps/docs/jasper-howto.xml Index: jasper-howto.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-catalina/webapps/docs/jasper-howto.xml,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- jasper-howto.xml 1 Sep 2004 22:04:27 -0000 1.15 +++ jasper-howto.xml 18 Sep 2004 17:09:31 -0000 1.16 @@ -106,6 +106,9 @@
  • javaEncoding - Java file encoding to use for generating java source files. Default UTF8.
  • +
  • genStrAsCharArray - Should text strings be generated as char +arrays, to improve performance in some cases? Default false.
  • +
  • keepgenerated - Should we keep the generated Java source code for each page instead of deleting it? true or false, default true.
  • @@ -135,19 +138,10 @@
    • development - To disable on access checks for JSP pages compilation set this to false.
    • -
    • fork - The internal JVM javac compiler used by Ant -has a known memory leak. And Ant requires that java compiles be synchronized, -i.e. only one JSP page can be compiled at a time. Set fork to -true or do not define it (it is the default value) so that Ant -compiles JSP pages in a seperate JVM. -This removes the synchronization of JSP page compiles and prevents -all the javac classes from being instantiated and subsequently garbage -collected by the JVM Tomcat is running in. This also works around known -issues with javac, including memory leaking, as well as JAR file locking -on Windows.
    • -
    • reloading - To disable background compilation of JSP -pages, which uses one thread per web application, set this to -false.
    • +
    • genStrAsCharArray - To generate slightly more efficient +char arrays, set this to true.
    • +
    • trimSpaces - To remove useless bytes from the response, +set this to true.

    --------------------------------------------------------------------- To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org