Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where is jsp's java file

Tags:

tomcat

In tomcat6, where does tomcat put the generated java file for a JSP file?

exception:

java.lang.NullPointerException
    at org.apache.jsp.xxx.yyy.view_jsp._jspService(view_jsp.java:164)
like image 365
Southsouth Avatar asked Jul 28 '26 16:07

Southsouth


2 Answers

They're kept under Tomcat's work directory, e.g.

work/Catalina/localhost/_/org/apache/jsp/login_jsp.java

The specifics of the path my vary, from version to version, but it's always under work

like image 160
skaffman Avatar answered Jul 30 '26 10:07

skaffman


look in ${TOMCAT_HOME}/work/Catalina/<HOST>/....

like image 38
Pierre Avatar answered Jul 30 '26 09:07

Pierre