Re: How to pre-compile JSP's ?

2002-07-08 Thread Mykola A. Nickishov
"John W. Warner" <[EMAIL PROTECTED]> writes: > 1) If you use ANT or can use ant... Put the following in the build > script. > > > > > > > (from Jay Gardner's Message 04/08/2002 help with JspC) Or simply use Ant's jspc optional task. -- /me @ home MAN-UANIC -- To unsubscribe, e-m

RE: How to pre-compile JSP's ?

2002-04-10 Thread Sean LeBlanc
[EMAIL PROTECTED]] > Sent: Wednesday, April 10, 2002 12:30 PM > To: 'Tomcat Users List' > Subject: RE: How to pre-compile JSP's ? > > > There are three methods. I like #1, I used #3 up until a while ago. > Anyway, here they are. > My major criticism of method

RE: How to pre-compile JSP's ?

2002-04-10 Thread John W. Warner
--Original Message- From: Jay Gardner [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 02:06 PM To: Tomcat Users List Subject: RE: How to pre-compile JSP's ? There is a tool jspc that come with the TC 4.X server that can be used to create servlet source for you JSPs. These sources

RE: How to pre-compile JSP's ?

2002-04-10 Thread John W. Warner
// add error handling } } } } catch (Exception e) { System.out.println("exception raised:" + e); } } } -Original Message- From: Christophe Reynaud [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 01:35 PM To: Tomcat Users

RE: How to pre-compile JSP's ?

2002-04-10 Thread Jay Gardner
lp me? Thanks in advance! --Jay Gardner -Original Message- From: Christophe Reynaud [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 10, 2002 11:35 AM To: Tomcat Users List Subject: How to pre-compile JSP's ? Do you know if there is a simple solution to pre-compile the JSP's

How to pre-compile JSP's ?

2002-04-10 Thread Christophe Reynaud
Do you know if there is a simple solution to pre-compile the JSP's ? (And to tell tomcat not to re-compile the JSP's ?) Thanks Jay Gardner wrote: > There are definitely memory leaks in javac. This is a problem when jspc > compiles your jsp code in the same JVM as the TC server. > > --Jay Gard