Eclipse debugger and remote debugger not working

I am using the Eclipse Luna Version: Luna Release (4.4.0) Build ID: 20140612-0600-32 BIT I have some breakpoints and a remote debugger on which use is working properly.

Suddenly he stopped working. I m debugging using the Target runtime parameter.

Now he does not stop at control points. Although in the case of remote debugging, it connects to the port. Checked using netstat. But that just doesn't stop at breakpoints. I am using SUN JDK 1.7 Several times I get the PERM SPACE OUT problem. Please suggest.

+6
source share
3 answers

There are two problems (Debug EclipseA):

  • The plugin you are developing in EclipseA is asynchronous for a deployable plugin that uses EclipseB. This can happen if the project cannot complete completely in EclipseA, or if the old version of your plugin first loads EclipseB.
  • EclipseB does not allocate / permgen memory. Therefore add -Xms512m -Xmx2g -XX:MaxPermSize=512mconfiguration debugs to VM-Arguments.
0
source

You can do a few things:

  • Update code for all projects
  • Clear all projects and rebuild them

If any of the above actions does not solve your problem, try deleting all projects from eclipse, delete all files and directories for eclipse settings and import your projects again.

0
source

. eclipse folder->. Metadata → org.eclipse.debug.core, .launches . , .

-1
source

All Articles