I am using GWT. i have deployed .war in tomcat. now i would like to debug it from eclipse.Please help me how to configure the steps?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To debug through eclipse you must have run tomcat in debug mode.
So first of all set following params in catlina file in bin as
set JPDA_TRANSPORT=dt_socket
set JPDA_ADDRESS=5050
Then run tomcat server by using one of the following command from respective directory
..\jakarta-tomcat-5.5.7\bin>catalina jpda run
…or…
..\jakarta-tomcat-5.5.7\bin>catalina jpda start
I am using “jakarta-tomcat-5.5.7”.
Then go 2 eclipse and setup for debug mode
in left tab select remote java application then select your respective project and set your connection properties.
Now you can debug.