I want to know what does eclipse do for JVM or other things if i start tomcat in debug mode?
I also want to know why I can make my changed code efficient immediately If i start tomcat in debug mode?Who make it become a reality?
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.
In debug mode you can set breakpoints, so the JVM will pause there and using that, if you are in the debug perspective, you can then see all the variables, this is useful if you are getting an error or you don’t know why a certain variable is null, for example.