With Sun's JSWDK 1.0, I can access only the class file for the servlet generated from my JSP page. Is there a way to see the Java source for the generated servlets?
Created May 4, 2012
Govind Seshadri For Sun's JSWDK 1.0, set the initialization parameter:
jsp.initparams=keepgenerated=true
This can be found within the web-inf/servlets.properties file for your application.
When this is passed to your JSP servlet, it will preserve the Java source along with the class file in the work subdirectory for the engine.