4

hereのように RCP アプリケーションを構築しようとしています。

悲しいことに、私にはあまり意味のないエラー メッセージが表示されます。多分あなたの1人は考えを持っています。

 !SESSION 2013-07-12 14:31:25.331 -----------------------------------------------
eclipse.buildId=unknown
java.version=1.7.0_07
java.vendor=Oracle Corporation
BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=de_DE
Framework arguments:  -application org.eclipse.ui.ide.workbench
Command-line arguments:  -application org.eclipse.ui.ide.workbench -data C:\Users\ccoen\Desktop\workspace/../runtime-de.vogella.rcp.editor.example.application -dev file:C:/Users/ccoen/Desktop/workspace/.metadata/.plugins/org.eclipse.pde.core/de.vogella.rcp.editor.example.application/dev.properties -os win32 -ws win32 -arch x86 -consoleLog

!ENTRY org.eclipse.osgi 4 0 2013-07-12 14:31:25.721
!MESSAGE Application error
!STACK 1
java.lang.RuntimeException: Application "org.eclipse.ui.ide.workbench" could not be found in the registry. The applications available are: org.eclipse.ant.core.antRunner, org.eclipse.equinox.app.error.
    at org.eclipse.equinox.internal.app.EclipseAppContainer.startDefaultApp(EclipseAppContainer.java:248)
    at org.eclipse.equinox.internal.app.MainApplicationLauncher.run(MainApplicationLauncher.java:29)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:344)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:622)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:577)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1410)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1386)
4

4 に答える 4

2

Eclipseプラグイン(スタンドアロンのRCPアプリケーションではない)を開発し、 java.lang.RuntimeException: Application "org.eclipse.ui.ide.workbench" could not be found in the registry.例外を取得するときにうまくいった別のアプローチ(このエラーをグーグルで検索すると、このSOスレッドが見つかり、次も見つかりました):
https://www.eclipse. org/forums/index.php?t=msg&th=155457&goto=820447&#msg_820447

実行構成...」に移動し、「プラグイン」タブでorg.eclipse.ui.ide.applicationプラグインを手動でチェックする必要があります。これですべてです(または、も必要になるかもしれませんがorg.eclipse.core.net、私は必要ありませんでした)。

以前は、[必要なプラグインを追加]、 [プラグインを検証] をクリックしましたが、このプラグインが必要としてマークされていなかったため、新しい Eclipse インスタンスを開始するたびにこの例外が発生しました。手動で追加することで、問題は解決しました。

于 2015-02-25T16:23:02.980 に答える