I recently encounter some problems with compiling JSP to Servlets. The reason I want to convert JSP to servlets is that I want to do static analysis on the Java code.
I got the compiled Java files in Tomcat (i.e., I know where Tomcat keeps the Java files compiled from JSP), but the compiled files lost the actual Object names.
For example, it is what I saw from the Tomcat compiled servlet java file:
private org.apache.jasper.runtime.TagHandlerPool _005fjspx_005ftagPool_005fdatatables_005ftable_0026_005ftheme_005frow_005fpaginate_005finfo_005fid_005fexport_005fdata_005fcssClass_005fcdn;
Is there any way that I can remove the Jasper abstraction and find the actual Object type?
Thank you very much for your help in advance.