有没有办法在不完全启动eclipse平台的情况下运行eclipse插件应用程序
考虑一个简单的“Hello world”插件,如何在不完全启动 eclipse 平台的情况下运行它?
Consider a simple "Hello world" plug-in, how can I run it without having to fully launch the eclipse platform?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 eclipse 插件是 OSGi 捆绑包,因此您可以在 OSGi 容器中启动一个简单的 hello-world 插件,例如 Equinox或 Apache Felix
这里是一个关于如何独立启动 Eclipse 帮助系统的示例。 (这当然是比 hello-world 更多的依赖项)
Since eclipse plugins are OSGi bundles you could start a simple hello-world plugin in an OSGi container like Equinox or Apache Felix
Here is an example on how to start the eclipse help system standalone. (This of course as more dependencies, than hello-world)