Eclipse hangs on loading workbench

后端 未结 22 1306
滥情空心
滥情空心 2020-12-04 05:43

My eclipse stops loading workbench. I tried already starting with ./eclipse --clean

When starting from console it throws following exception:

java.lang         


        
22条回答
  •  死守一世寂寞
    2020-12-04 06:15

    Eclipse freezing at startup - before loading workspace very good answer on this post. repeating the answer that worked for me

    In your workspace directory perform the following steps:

    cd .metadata/.plugins

    mv org.eclipse.core.resources org.eclipse.core.resources.bak

    Start eclipse. (It should show an error message or an empty workspace because no project is found.)

    Close all open editors tabs.

    Exit eclipse.

    rm -rf org.eclipse.core.resources (Delete the newly created directory.)

    mv org.eclipse.core.resources.bak/ org.eclipse.core.resources (Restore the original directory.)

    Start eclipse and start working. :-)

    Answer by CharlesB

提交回复
热议问题