Search code examples
javaeclipsedebugging

Stop code execution while debugging in Eclipse without terminating the thread


Is there a way how to stop debugging when program hits the breakpoint (i.e. I don't want to execute the code after it) without stopping entire application server (I am programming apps in Java, server is JBoss)?

I know only one way how to stop debug - red button with title Terminate which shuts down the server. So is there anything else?


Solution

  • You can hit the disconnect button. See the attached image. This will continue execution and stopping debugging without stopping the server. enter image description here