RE: How do I precompile JSP files for final Production use?

2001-01-23 Thread Hobson, Don
Michael, I don't want to install the JDK onto the server either. It is too big. When I install my app I will install Tomcat to use http as the transport mechanism. Is there a way around having to install the JDK at all? -Original Message- From: Michael Wentzel [mailto:[EMAIL PROTECTED]]

Syntax and Performance

2001-01-22 Thread Hobson, Don
 Is there any reason that I should not do this:  <%! String hostname;%><%  hostname    = request.getParameter("Host"); %>  Does the compiler have to do any extra work? Should I combine them? 

RE: How do I precompile JSP files for final Production use?

2001-01-22 Thread Hobson, Don
I don't want the files to be compiled at startup. I don't want them to ever have to be compiled once installed on the users machine. I want to compile them, package the .class files and ship my application. Has anyone tried this with success? I don't want to install the JDK on the users machine,

How do I precompile JSP files for final Production use?

2001-01-20 Thread Hobson, Don
When I ship or deploy my app, I do not intend to install the JDK on the users machine. I understand that I can precompile all of the JSP files to .class files and this will work. Can someone explain this process? If I call: but I only have the precompiled login.class file in the WEB-INF/classes