John
John

Reputation: 1220

Debugging on Eclipse using Remote Java Application

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 :

enter image description here

After clicking the debug button, I can see the following on the debug console :

enter image description here

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 :

enter image description here

Upvotes: 0

Views: 95

Answers (2)

Ruelos Joel
Ruelos Joel

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

vk239
vk239

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

Related Questions