Eclipse: Can't kill process on Java perspective

SomethingSomething

I am working on a Java project in Eclipse in Unix, and ran the project from the IDE. The process seems to run forever and doesn't respond to my clicks on the red "stop" button. I really want to avoid restarting my IDE. Can anyone advise how to kill the embedded process?

screenshot

Andrew_Dublin

Just run in terminal

 jps -l

It will show you all running java processes.

Quick example. I run simple JFrame window.

enter image description here

As you can see there is clear process number for my JFrame. Just kill it and work with your Eclipse without restart.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related