Here is the stacktrace:
...
org.apache.jsp.showcustomer_jsp._jspService(showcustomer_jsp.java:128)
org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
This is what I do:
- Get the line number from the stacktrace, in this case 128.
- Find the
showcustomer_jsp.java
file (and it isn't exactly obvious to look in/var/run/tomcat-6/Catalina/localhost/_/org/apache/jsp
). - Open it and go to line 128.
- Now, search the
.jsp
file for the whatever you found on line 128 in the_jsp.java
file. - Boom! You're done!
Please, is there a simpler way to do this?