|
|
5. Replacing Tomcat's default JSP compiler Jasper with IBM's Jikes compilerSince IBM's Java compiler Jikes is performing better than Tomcat's own JSP compiler Jasper, it's recommended to install Jikes instead. Download the sources of Jikes from IBM's Research website:
Extract and compile Jikes:
Check support for the -encoding option:
To have Jikes output its error messages in a Jasper compatible way, add this $CATALINA_OPTS environment variable to /etc/rc.d/init.d/tomcat:
Make Jikes your JSP compiler for Tomcat by adding to /usr/local/tomcat/conf/web.xml:
Since entering the full path to Jikes in /usr/local/tomcat/conf/web.xml doesn't seem to work (version 4.1.27), make the jikes program available in your path:
|
