Eclipse Luna Hanging when loading debug configuration

Having a problem with the Eclipse IDE (Luna), when I started the program, I encountered an infinite loop, so I had to shut down the program. After which every time I try to restart the program, it just freezes when loading the Debug configuration.

I am trying to create an Eclipse plugin to get the file name and add comments to it. I do not believe that there was an error with the program, because before it worked fine. I checked the simple helloWorld program in another workspace to see if there are any problems, but this program is working fine. From what I read, it may be somehow related to the metadata file, but I have no idea how to fix it.

Problem

When you try to load the Eclipse Luna window (this is normal), what it loads is displayed in the lower right corner of the window. It seems to be hanging at a point when it tries to download org.eclipse.web.core.

The program worked before the start of the cycle, and I could run it without any problems.

When Eclipse stops responding, it asks โ€œif you want to close the programโ€ and below that, it offers you some information about the problems that are listed below.

Problem Details

Task signature:

  • Problem Event Name: AppHangB1
  • Application Name: javaw.exe
  • Application Version: 8.0.11.12
  • Application Timestamp: 539f94f3
  • Suspension: 8701
  • Hang Type: 134217728
  • OS Version: 6.3.9600.2.0.0.256.48
  • Locale ID: 2057
  • Additional signature signature 1: 8701579a6fb10e5d0065e1f36c8dcf91
  • Additional signature signature 2: 6c5e
  • Additional signature signature 3: 6c5ef7fd43455b1ace2cb9fa4a881a13
  • Additional signature 4: 8701
  • Additional signature 5: 8701579a6fb10e5d0065e1f36c8dcf91
  • Additional signature 6: 6c5e
  • Additional signature 7: 6c5ef7fd43455b1ace2cb9fa4a881a13

Have tried

Cleaning and restoring all projects, disabling firewalls and antiviruses, creating another base program, reinstalling Eclipse and Java.

+3
source share
2 answers

I finally figured it out, in the local workspace I deleted the .metadata folder and then just re-imported the project and it worked again.

It seems that when it got stuck in a loop, the .Lock file was not properly closed in the .metadata folder and did not allow the eclipse to start setting up Debug.

These questions also have some responders that can work without deleting the .metadata folder:

How to prevent Eclipse from freezing at startup?

Eclipse freezes when loading workbench

+4
source

I had the same issue with eclipse Mars that works on Linux. I solved this by deleting the debug configuration file associated with the project. This file is located in .metadata / .plugins / .org.eclipse.debug.core / .launches / $ ProjectName.launch

+2
source

Source: https://habr.com/ru/post/896276/


All Articles