I'm just trying to make winstone work with gcj and the last thing I'm facing is the compiling of jsp. I've failed to use gcj as I'm getting strange runtime problems, I'm now trying to use precompiled jsp's, where should I place the compiled classes?
I'd suggest putting everything on the system class path (the main jvm one) or in the same place the web application classes are. GCJ and classloading is a little flaky, so if you only have one web app, putting all your java classes and jars on the system classpath is the safest choice.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'd suggest putting everything on the system class path (the main jvm one) or in the same place the web application classes are. GCJ and classloading is a little flaky, so if you only have one web app, putting all your java classes and jars on the system classpath is the safest choice.