我的eclipse插件启动时出现Root exception:java.lang.IllegalStateException: Workbench has not been created yet.
错误。
它似乎导致副作用使一些包异常错误。我认为我的代码不使用egit模块。
org.osgi.framework.BundleException: Exception in org.eclipse.egit.ui.Activator.start() of bundle org.eclipse.egit.ui.
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:734)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:683)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:381)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.start(AbstractBundle.java:300)
如何删除此错误?这是访问工作区的代码。我发现this article - Debugging a failed Eclipse launch说它是竞争条件,但我不确定为什么我会有竞争条件,如果有,那么如何删除它。
public void renameClassRefactor() throws CoreException {
// get the project information with ResourcesPlugin
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
// 1. The name of the project in the workspace
System.out.println(ResourcesPlugin.getWorkspace().toString());
java.io.File workspaceDirectory = root.getLocation().toFile();
System.out.println(workspaceDirectory.toString());
答案 0 :(得分:22)
我为“完成工作台尚未创建”而苦苦挣扎。
但是我通过以下步骤得到了解决方案.-
org.apache.felix.gogo.runtime
,org.apache.felix.gogo.shell
,org.eclipse.equinox.console
,org.eclipse.osgi
和您的jar文件。由于
答案 1 :(得分:12)
参考this site,我可以在“运行配置”中添加-clean
参数以删除错误消息。