Hi smallsun,
The JRunPro 2.3.1 release includes a utility called JSPC. The JSPC (JSP Compiler) is a java tool used to compile JSP pages to Java class files out of the context of a web server.
This utility and more information is installed at this location:
/usr/local/jrun/contrib/jspc
Once you have pre-compiled your JSP files into Java files, you can then use Jikes or any other Java compiler to create Class files.
Regards,
Tirumalarao
Developer Technical Support,
Sun Microsystems,India
Hi smallsun,
When ever you start the application for the first time it takes some time for the web pages to come up. It is because the WebLogic will compile dynamic JSP. you can configure WebLogic to pre-compile all JSP pages, you have to add these lines in web.xml:
<web-app>
<context-param>
<param-name>weblogic.jsp.precompile</param-name>
<param-value>true</param-value>
</context-param>
</web-app>
I hope this will help you out.
Regards,
Tirumalarao
Developer Technical Support,
Sun Microsystems,India.