将我正在开发的插件导出为可部署功能后,我得到了 Class Not Found 异常。
通常我将生成的 Jar 放在 dropins 文件夹中,我可以使用它。但是在添加了似乎正确的方法来保存对资源的更改之后,IWorkspaceRunnable
当我尝试运行已部署的插件时,我开始得到 not Class Def Exception。(注意插件在没有部署的情况下运行良好,也就是作为 Eclipse 应用程序运行)
IWorkspaceRunnable saveTask = new IWorkspaceRunnable() {
@Override
public void run(IProgressMonitor monitor) throws CoreException {
if (fileName != null) try {
myEditor.save(new File(fileName));
firePropertyChange(PROP_DIRTY);
ResourcesPlugin.getWorkspace().getRoot().refreshLocal(IResource.DEPTH_INFINITE, null);
} catch (Exception e) {
e.printStackTrace();
JOptionPane.showMessageDialog(null, "Error while saving: \n"+e.toString());
}
}
};
try {
ResourcesPlugin.getWorkspace().run(saveTask, null);
} catch (CoreException e) {
e.printStackTrace();
JOptionPane.showMessageDialog(null, "Error while saving: \n"+e.toString());
}
知道如何让它工作吗?
org.eclipse.core.resources
,其中包含IWorkspaceRunnable
,已经存在于我的“插件依赖项”文件夹中。我认为它在某个时候自动到达那里。还有其他地方我应该放置/引用那个特定的罐子吗?对于我在 org.eclipse.* 中使用的其他类,我没有做任何其他事情。
编辑:这是 MANIFEST.MF
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: MyPlugin
Bundle-SymbolicName: MyPlugin;singleton:=true
Bundle-Version: 1.0.0.1
Require-Bundle: org.eclipse.ui,org.eclipse.core.runtime,org.eclipse.ui
,org.eclipse.core.runtime,org.eclipse.jface.text,org.eclipse.ui.edito
rs,org.eclipse.ui.ide,org.eclipse.core.resources;visibility:=reexport
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
Bundle-Vendor: myVendor
Bundle-ClassPath: /usr/share/eclipse/plugins/,.
我如何部署插件:
我将 .jar 放在 /home//.eclipse/org.eclipse.platform_/dropins/ 中,版本为 4.2.0_1543616141。这可能不是部署它的正确方法,但在添加对org.eclipse.core.resources
.
我有兴趣创建一个可以放在 dropins 文件夹中并运行的独立式插件。