Job found still running after platform shutdown.

来源:互联网 发布:mac book air使用教程 编辑:程序博客网 时间:2024/05/22 07:56

转载地址:http://www.metod.si/job-found-still-running-after-platform-shutdown-eclipse/


问题描述:

Job found still running after platform shutdown.  Jobs should be canceled by the plugin that scheduled them during shutdown: org.eclipse.ui.internal.Workbench$55

***WARNING: Display must be created on main thread due to Cocoa restrictions.

我的情况执行下面命令就解决了:

./eclipse -clean -clearPersistedState

链接地址:http://stackoverflow.com/questions/15372023/eclipse-will-not-start-and-i-havent-changed-anything

解决方案:

If your eclipse crashed and refuses to start, saying something along the lines of: Job found still running after platform shutdown. Jobs should be canceled by the plugin that scheduled them during shutdown, then try the following.

  1. rm -rf YOUR_PROJECT_DIR/.metadata/.plugins/org.eclipse.core.resources

Start eclipse. However, all your projects will be gone.

You can import them via File -> Import -> Existing Projects into Workspace; then select the directory where you had your projects.

EDIT: I just found a better way. (source)

  1. rm YOUR_PROJECT_DIR/.metadata/.plugins/org.eclipse.core.resources/.snap

This way you do not need to reimport your projects.

ANOTHER WAY:

As IGx89 suggested in the comments, you can also try the following:

  1. rm YOUR_PROJECT_DIR/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi

http://stackoverflow.com/questions/11310970/eclipse-juno-doesnt-start/12045547#12045547



0 0