Can anyone provide me the details of the location where WebSphere stores compiled JSP (java files).
For example Tomcat stores both the java and the class file @ *..\work\Catalina\localhost\...\org\apache\jsp\..*
For WebSphere I could locate the .class files for the compiled jsp's but not the java files. I need this as the log files show an error the compiled jsp (java file).
Thank You
j_devlop89
You may want to run JspC Ant Task or the JspBatchCompiler.sh/bat. That may be easier than hunting for the files.
thanks,
dims
-- dims
This attribute is needed in your ibm-web-ext.xmi file in your WAR.
<jspAttributes xmi:id="JSPAttribute_4" name="keepgenerated"
value="true"/>
This one makes it easier to locate where WAS puts everything
<jspAttributes xmi:id="JSPAttribute_6" name="scratchdir" value="/
tmp"/>
Make sure the number after the "JSPAttribute_" are unique in the xmi
file.
Good luck.