问题描述
我试图在eclipse中创建一个简单的插件。当我运行应用程序时,我在日志文件中看到这个错误:
I'm trying to create a simple plugin in eclipse. When I run the application, I see this error in log file:
你对这个错误有任何想法吗?
Do you have any idea about this error?
推荐答案
检查您的部分
如果没有正确指定什么应该是在最后的二进制结果,它不会工作。检查.class文件是MANIFEST.MF说他们将在哪里。
If it doesn't properly specify what's supposed to be in the final binary result, it will not work. Check the .class files are where the MANIFEST.MF says they will be.
from ,此错误消息的另一个原因:
from EclipseZone, another reason for this error message:
The activator org.example.FooActivator for bundle org.example.foo is invalid
补充说:
- 如果从另一个插件这还没有被激活,这可能是你的问题。
- 如果没有找到该类,那么也会使您的插件激活器无效。
建议:您可以在启动器(org.osgi.framework.BundleContext)rel =nofollow noreferrer> start()
/ code>而不是其构造函数。
Basic advice: you may be better off with your initializations done in the start()
method of Activator
rather than its constructor.
这篇关于捆绑的激活器无效的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!