Do anyone here know how to compile all the JSP pages before I roll out for 
production??

----

Every JSP, when called, is turned into a JAVA source code and compiled into a servlet, 
the first time it is called.

You can do this manually:

${CATALINA_HOME}/bin/jasper.sh jspc <your_file.jsp>

then 

javac -classpath ${SERVLET.JAR} your_file.java
mv YourServlet.class WEB-INF/classes/

and 

edit web.xml to add servlet and mapping.

Nix.


Reply via email to