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?
|
|
For Tomcat 5.5 on Windows: Edit bin/startup.bat Find the line that reads: call "%EXECUTABLE%" start %CMD_LINE_ARGS% Replace it with these lines: set JPDA_ADDRESS=8000 set JPDA_TRANSPORT=dt_socket call "%EXECUTABLE%" jpda start %CMD_LINE_ARGS% |
||
|
|
|
|
You could do what they suggest, or use this Eclipse plugin, which makes it easier to configure Tomcat to begin with: Eclipse Tomcat Plugin 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. |
||
|
|
|
|
Follow these steps:
Notes:
|
||
|
|
|
|
I just Googled it. :) http://bugs.sakaiproject.org/confluence/display/BOOT/Setting+Up+Tomcat+For+Remote+Debugging Many more on google. Effectively, set your JPDA settings: set JPDA_ADDRESS=8000 set JPDA_TRANSPORT=dt_socket bin/catalina.bat jpda start Then, in Eclipse, Run->Debug Configurations...->Remote Applications. |
||
|
