How to debug a JSP tomcat service using eclipse? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T01:15:51Zhttp://stackoverflow.com/feeds/question/67810http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/67810/how-to-debug-a-jsp-tomcat-service-using-eclipse1How to debug a JSP tomcat service using eclipse?unknown (yahoo)2008-09-15T23:05:53Z2008-10-13T19:49:54Z
<p>I would like to debug my separately running JSP/Struts/Tomcat/Hibernate application stack using the Eclipse IDE debugger. How do I setup the java JVM and eclipse so that I can set breakpoints, monitor variable values, and see the code that is currently executing?</p>
http://stackoverflow.com/questions/67810/how-to-debug-a-jsp-tomcat-service-using-eclipse/67888#678883Answer by Dustin for How to debug a JSP tomcat service using eclipse?Dustin2008-09-15T23:18:23Z2008-09-15T23:18:23Z<p>I just Googled it. :)</p>
<p><a href="http://bugs.sakaiproject.org/confluence/display/BOOT/Setting+Up+Tomcat+For+Remote+Debugging" rel="nofollow">http://bugs.sakaiproject.org/confluence/display/BOOT/Setting+Up+Tomcat+For+Remote+Debugging</a></p>
<p>Many more on google.</p>
<p>Effectively, set your JPDA settings:
set JPDA_ADDRESS=8000
set JPDA_TRANSPORT=dt_socket
bin/catalina.bat jpda start</p>
<p>Then, in Eclipse, Run->Debug Configurations...->Remote Applications.</p>
http://stackoverflow.com/questions/67810/how-to-debug-a-jsp-tomcat-service-using-eclipse/67927#679271Answer by Don for How to debug a JSP tomcat service using eclipse?Don2008-09-15T23:27:07Z2008-09-15T23:27:07Z<p>Follow these steps:</p>
<ol>
<li><p>Add the following arguments to the <code>java</code> command that is used to launch Tomcat (on Windows, I think this is in TOMCAT\bin\catalina.bat)</p>
<p>-Xdebug -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=n</p></li>
<li><p>In Eclipse, create a 'Remote Java Application' debug configuration and set the port to 8787 and the host to the name (or IP address) of the machine where Tomcat is running. If Tomcat is running on the same machine as Eclipse, use 'localhost'.</p></li>
<li><p>In the 'source' tab of the debug configuration, add any projects that you want to debug into</p></li>
<li><p>Start Tomcat</p></li>
<li><p>Launch the debug configuration you created in step 2</p></li>
<li><p>Eclipse should now stop at any breakpoints that you've set in the projects you added in step 3.</p></li>
</ol>
<h2>Notes:</h2>
<ul>
<li>You can change the port to any other available port if for some reason you can't use 8787</li>
<li>If you want Tomcat to wait for the remote debugger to start, use 'suspend=n' in the command above to 'suspend=y'</li>
</ul>
http://stackoverflow.com/questions/67810/how-to-debug-a-jsp-tomcat-service-using-eclipse/68310#683101Answer by MetroidFan2002 for How to debug a JSP tomcat service using eclipse?MetroidFan20022008-09-16T00:45:38Z2008-09-16T00:45:38Z<p>You could do what they suggest, or use this Eclipse plugin, which makes it easier to configure Tomcat to begin with: <a href="http://www.eclipsetotale.com/tomcatPlugin.html" rel="nofollow">Eclipse Tomcat Plugin</a></p>
<p>When launching tomcat via this plugin, it starts in debug mode by default, you must explicitly disable debugging mode if you want it to not allow Eclipse to connect a remote debugger.</p>
http://stackoverflow.com/questions/67810/how-to-debug-a-jsp-tomcat-service-using-eclipse/198801#1988010Answer by Jeremy Stein for How to debug a JSP tomcat service using eclipse?Jeremy Stein2008-10-13T19:49:54Z2008-10-13T19:49:54Z<p>For Tomcat 5.5 on Windows:</p>
<p>Edit bin/startup.bat</p>
<p>Find the line that reads:</p>
<pre>call "%EXECUTABLE%" start %CMD_LINE_ARGS%</pre>
<p>Replace it with these lines:</p>
<pre>set JPDA_ADDRESS=8000
set JPDA_TRANSPORT=dt_socket
call "%EXECUTABLE%" jpda start %CMD_LINE_ARGS%</pre>