如果我创建Headless Hello RCP
申请
我可以像任何普通的java应用程序一样在Eclipse调试器下运行它。它运行并将“Hello world”打印到Eclipse控制台中。
现在如何让它真正独立,即在没有MY CURRENT Eclipse的情况下运行?
导出到可运行的JAR不适用于这样的项目。
导出到Eclipse产品也不起作用。
更新
如果我为项目创建产品文件,则导出到产品开始工作,但应用程序本身在运行时开始崩溃。这可能是由于我在产品文件创建过程中做出的错误猜测。
首先创建的产品文件看起来并没有完全填满我:
尝试填写Product
下拉列表我使用New
按钮并从当前项目中创建产品
在填充Application
单元格时我使用了一些猜测。我在那里设置了一些条目,它以某种方式与我当前的项目名称相对应。
导致应用程序崩溃并出现异常:
!ENTRY org.eclipse.equinox.launcher 4 0 2013-12-18 03:29:41.305
!MESSAGE Exception launching the Eclipse Platform:
!STACK
java.lang.ClassNotFoundException: org.eclipse.core.runtime.adaptor.EclipseStarter
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:633)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
更新2
此常见问题解答条目http://wiki.eclipse.org/FAQ_How_do_I_create_an_Eclipse_product%3F描述了一些在现实中无效的程序。
的plugin.xml
将产品扩展点添加到plugin.xml时,Eclipse警告
A minimum of 1 'provider' elements must be specified.
A minimum of 1 'product' elements must be specified.
常见问题解答中没有描述,是否应该这样做以及如何进行。
假设我们保持原样。
产品文件
稍后在创建产品文件时,还不清楚如何填写它:
如果按照FAQ中的说明填写(参见上文,仅设置了产品ID),则生成的应用程序不会运行,但例外情况为:
!SESSION Wed Dec 18 13:32:36 MSK 2013 ------------------------------------------
!ENTRY org.eclipse.equinox.launcher 4 0 2013-12-18 13:32:36.300
!MESSAGE Exception launching the Eclipse Platform:
!STACK
java.lang.ClassNotFoundException: org.eclipse.core.runtime.adaptor.EclipseStarter
at java.net.URLClassLoader$1.run(URLClassLoader.java:366)
at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:633)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
at org.eclipse.equinox.launcher.Main.main(Main.java:1426)
UPDATE3
我发现了以下几点:
1)应在plugin.xml
文件和.product
文件中描述产品。在plugin.xml
文件中,产品表示为对org.eclipse.core.runtime.products
点(<extension> tag
)的贡献。可以通过plugin.xml
文件创建向导,.product
按钮自动创建New
文件的此标记。
2)应用程序也在plugin.xml
文件中表示为对org.eclipse.core.runtime.applications
的贡献。这应该在运行.product
创建向导之前进行预配置。 id
文件中应用程序的plugin.xml
不是完全限定的。如果前缀为插件名称,则会出现FQN,该名称写在MANIFEST.MF
文件中。因此,在运行.product
创建向导时,应考虑计算应用程序的FQN并进行设置。
3)最终运行的结果不仅取决于上述所有内容,还取决于Debug As -> Debug Configurations
或Run As -> Run Configurations
。那里有一个Plug-ins
标签,里面有几个魔术控件:
默认情况下,甚至不包括主应用程序。
关于这一切,我能够走近一路,但终于陷入了新的障碍:
运行最终导出的应用程序时,我得到一个例外:
!SESSION Wed Dec 18 19:04:36 MSK 2013 ------------------------------------------
!ENTRY org.eclipse.equinox.launcher 4 0 2013-12-18 19:04:36.695
!MESSAGE Exception launching the Eclipse Platform:
!STACK
java.lang.RuntimeException: Could not find framework
at org.eclipse.equinox.launcher.Main.getBootPath(Main.java:992)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:571)
at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
更新4
将org.eclipse.core.runtime
添加到.product
文件的依赖项后,最后一个问题就解决了。下一个问题是一次激动
!SESSION 2013-12-18 19:43:31.136 -----------------------------------------------
eclipse.buildId=unknown
java.version=1.7.0_40
java.vendor=Oracle Corporation
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
Command-line arguments: -os win32 -ws win32 -arch x86_64
!ENTRY org.eclipse.osgi 4 0 2013-12-18 19:43:31.924
!MESSAGE Application error
!STACK 1
java.lang.RuntimeException: Application "MyApp.id1" could not be found in the registry. The applications available are: 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:354)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:181)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:636)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:591)
at org.eclipse.equinox.launcher.Main.run(Main.java:1450)
(此次运行中的应用程序ID不同,但是正确无误)
更新5
我发现我的应用程序类没有出现在导出目录中。
如何强迫它去那里?
答案 0 :(得分:2)
您需要的是应用中的Product File。为您的RCP应用程序创建产品,然后关注本教程的第2点(部署)。
祝你好运。答案 1 :(得分:0)
请检查日志文件。启动时可能会发生一些异常。您可以在<workspaceLoaction>/.metadata/.log
位置找到日志文件。