Re: Compile JSP before the first request arrives

2009-05-29 Thread S Arvind
:31 +0530 Subject: Re: Compile JSP before the first request arrives To: users@tomcat.apache.org Hi Ghufran, The problem is not in that, problem is in http://www.rgagnon.com/javadetails/java-0414.html that u provide in previous post if i run that jsp file i am getting that stack

Re: Compile JSP before the first request arrives

2009-05-28 Thread S Arvind
To: Tomcat Users List Subject: Re: Compile JSP before the first request arrives can you give me the good docs about this.. -Arvind S * Many of lifes failure are people who did not realize how close they were to success when they gave up. -Thomas Edison * On Wed, May 27, 2009

RE: Compile JSP before the first request arrives

2009-05-28 Thread Ghufran
://hostname.com/mywebapp/mypage.jsp?jsp_precompile=true Regards Ghufran -Original Message- From: S Arvind [mailto:arvindw...@gmail.com] Sent: Thursday, May 28, 2009 3:03 PM To: Tomcat Users List Subject: Re: Compile JSP before the first request arrives Hi Ghufran, if i ran

Re: Compile JSP before the first request arrives

2009-05-28 Thread S Arvind
, 2009 3:03 PM To: Tomcat Users List Subject: Re: Compile JSP before the first request arrives Hi Ghufran, if i ran the below mentioned jsp file to compile all jsp i am getting error with this stacktrace java.lang.ClassNotFoundException: org.apache.jsp.jsp.precompile_jsp

RE: Compile JSP before the first request arrives

2009-05-28 Thread Martin Gainty
Ghufran -Original Message- From: S Arvind [mailto:arvindw...@gmail.com] Sent: Thursday, May 28, 2009 3:03 PM To: Tomcat Users List Subject: Re: Compile JSP before the first request arrives Hi Ghufran, if i ran the below mentioned jsp file to compile all jsp

Re: Compile JSP before the first request arrives

2009-05-27 Thread David Smith
S Arvind wrote: Is there any way to pre-compile all the jsp files, when we are deploying in the production environment? -Arvind S * Many of lifes failure are people who did not realize how close they were to success when they gave up. -Thomas Edison* Yes ... depends on your build

Re: Compile JSP before the first request arrives

2009-05-27 Thread S Arvind
can you give me the good docs about this.. -Arvind S * Many of lifes failure are people who did not realize how close they were to success when they gave up. -Thomas Edison * On Wed, May 27, 2009 at 6:23 PM, David Smith d...@cornell.edu wrote: S Arvind wrote: Is there any way to pre-compile

RE: Compile JSP before the first request arrives

2009-05-27 Thread Ghufran
details at http://www.rgagnon.com/javadetails/java-0414.html Regards Ghufran -Original Message- From: S Arvind [mailto:arvindw...@gmail.com] Sent: Wednesday, May 27, 2009 6:31 PM To: Tomcat Users List Subject: Re: Compile JSP before the first request arrives can you give me

RE: Compile JSP before the first request arrives

2009-05-27 Thread Caldarale, Charles R
From: S Arvind [mailto:arvindw...@gmail.com] Subject: Re: Compile JSP before the first request arrives can you give me the good docs about this.. It's in the Tomcat docs: http://tomcat.apache.org/tomcat-6.0-doc/jasper-howto.html#Production%20Configuration http://tomcat.apache.org/tomcat-6.0

Re: Compile JSP before the first request arrives

2009-05-27 Thread Serge Fonville
Hi Some JSP containers (as per section 8.4.2 of the JSP 1.2 specification) support the capability of precompiling a JSP page. To precompile a JSP page, access the page with a query string of ?jsp_precompile How is this different from just accessing the page after deploying it? And can this

Re: Compile JSP before the first request arrives

2009-05-27 Thread Hassan Schroeder
On Wed, May 27, 2009 at 6:51 AM, Serge Fonville serge.fonvi...@gmail.com wrote: To precompile a JSP page, access the page with a query string of ?jsp_precompile How is this different from just accessing the page after deploying it? Yeah, what? :-) And can this also be done for an entire

Re: Compile JSP before the first request arrives

2009-05-27 Thread Len Popp
On Wed, May 27, 2009 at 09:51, Serge Fonville serge.fonvi...@gmail.com wrote: Hi Some JSP containers (as per section 8.4.2 of the JSP 1.2 specification) support the capability of precompiling a JSP page. To precompile a JSP page, access the page with a query string of ?jsp_precompile How