SomethingSomething
SomethingSomething

Reputation: 12236

Eclipse: Can't kill process on Java perspective

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

Upvotes: 2

Views: 2336

Answers (1)

Andrew_Dublin
Andrew_Dublin

Reputation: 745

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.

Upvotes: 5

Related Questions