Reputation: 1220
I have a hellowworld JSP running properly on the browser. I have added a toggle point on Eclipse hellowworld code. I started the tomcat like catalina jpda start
in debug mode and then run the "Debug" from the Eclipse as shown in the windows below :
After clicking the debug button, I can see the following on the debug console :
However, I am wondering why my eclipse is not displaying a window something like the following ( I just took the following screenshot from the website for explaining purpose) for my hellowworld application :
Upvotes: 0
Views: 95
Reputation: 2389
Are you in Debug Perspective?
Window > Open Perspective > Debug.
Refresh your breakpoints, remove all breakpoints then toggle it again.
Try to run your eclipse as an administrator.
Upvotes: 0
Reputation: 1044
The screenshot you attached shows your Eclipse in Debug view. Follow the instructions mentioned in the link here to launch your Java program on Eclipse in Debug view.
Upvotes: 1