RE: Precompiling JSPs

2003-01-15 Thread Steve Button
df See section 7-37 (p205 in the PDF) for the precompilation information. Hope that helps. -steve- > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 16, 2003 1:26 PM > To: Struts Users Mailing List > Subject: RE: Precompi

RE: Precompiling JSPs

2003-01-15 Thread YogeshChawla
;Mark Galbreath" To: "'Struts Users Mailing List'" <[EMAIL PROTECTED]>

RE: Precompiling JSPs

2003-01-14 Thread Mark Galbreath
It's really a matter of preference and performance. If you have 50k JSPs or linked JSPs (forwards, includes, etc.), you probably want to precompile; if your JSPs are 4k or less, the first-time performance hit is probably negligible. Run a performance tool against your site and compare the differe

Re: Precompiling JSPs

2003-01-14 Thread William W
Hi, What do you think about never precompile the JSPs ? William. From: "Billy Ng" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Subject: Re: Precompiling JSPs D

Re: Precompiling JSPs

2003-01-13 Thread Billy Ng
I used Ant to precompile the JSPs before. It was very good but took much longer to compile a build. If you have 2,000 JSPs, mm... And I can tell how hard to maintain 2000 entries in the web.xml. Billy Ng - Original Message - From: "William W" <[EMAIL PROTECTED]> To: <[EMAIL PROTECT

RE: Precompiling JSPs

2003-01-13 Thread Mark Galbreath
Use Ant to precompile whole directories in one line of script with your container's JSP pre-compiler. Mark -Original Message- From: William W [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 3:01 PM My app has more than 2,000 JSPs. I can precompile my JSP and map it into the w

RE: Precompiling JSPs

2003-01-13 Thread Siggelkow, Bill
Some containers support a container-specific flag for precompiling. As I recall you can do with this weblogic without having to declare all your JSPs in the web.xml. Of course, I would not do this in development mode as it will take a long time for server restarts! -Original Message-

Re: Precompiling JSPs

2003-01-13 Thread David Graham
Why does it matter if you have a large web.xml file for a large application? You could let them compile at runtime instead of precompiling if you really don't want a large web.xml file. David From: "William W" <[EMAIL PROTECTED]> Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]> T

RE: Precompiling JSPs

2001-12-06 Thread Ajay Chitre
Look for a file called \bin\jspc.bat in your TOMCAT_HOME Here's a link where you can find more information about this; http://kevinj.develop.com/javahome/javatomcat.jsp Hope this helps. -- Original Message -- >I generally don?t use TOMCAT but I think you should look for a class >jspc in tomc

RE: Precompiling JSPs

2001-12-06 Thread Rajeev Singh
I generally don’t use TOMCAT but I think you should look for a class jspc in tomcat server lib, you may use it for precompiling it. JSPC means JSP Compiler. Gud luk, -Original Message- From: Viet Kevin [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 2:00 PM To: [EMAIL PROTE

Re: Precompiling JSPs

2001-12-06 Thread Viet Kevin
Thanx, but ... I want to know if possible under tomcat4.0, and if it possible to specify in the web.xml ... > If weblogic server then use: > > C:>java weblogic.jspc > > > > -Original Message- > From: Viet Kevin [mailto:[EMAIL PROTECTED]] > Sent: Thursday, December 06, 2001 2:00 P

RE: Precompiling JSPs

2001-12-06 Thread Rajeev Singh
If weblogic server then use: C:>java weblogic.jspc -Original Message- From: Viet Kevin [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 2:00 PM To: [EMAIL PROTECTED] Subject: Precompiling JSPs Hello, I know that this question is not related to Struts but I want to know