Eclipse插件,SWT“未解决的要求:需求能力”

时间:2016-08-05 17:53:36

标签: eclipse-plugin

我被困住了。我无法弄清楚是什么导致我收到SWT捆绑的“未解决的要求:需求能力”错误(以及其他人,如果我深入挖掘)。它所述的要求是win32 os和ws,以及x86_64的拱门,所有这些似乎都应该由我的系统满足。我在下面列出了详细信息,并会更新任何人要求的详细信息。

背景和问题详情

我正在研究一个很长时间没有导出的Eclipse插件项目。自上次发布以来,它已从Java 7升级到8,从Juno升级到Mars。上周,我使用.product文件中的“Eclipse Product export wizard”创建了一个新版本。以前的版本很好。从Eclipse中启动项目工作正常(使用产品文件上下文菜单Run As-> Eclipse应用程序来创建Launch配置)。使用.product和launch config中的Validate Plug-ins功能,没有任何问题。

日志显示以下内容:

!SESSION 2016-08-05 09:50:28.847 -----------------------------------------------
eclipse.buildId=unknown
java.version=1.8.0_101
java.vendor=Oracle Corporation
BootLoader constants: OS=${target.os}, ARCH=${target.arch}, WS=${target.ws}, NL=en_US
Framework arguments:  -enableassertions
Command-line arguments:  -os ${target.os} -ws ${target.ws} -arch ${target.arch} -clean -consoleLog -enableassertions -console

!ENTRY org.eclipse.osgi 4 0 2016-08-05 09:50:30.975
!MESSAGE An error occurred while automatically activating bundle org.eclipse.ui.workbench (96).
!STACK 0
org.osgi.framework.BundleException: Error starting module.
at org.eclipse.osgi.container.Module.doStart(Module.java:580)
...
Caused by: java.lang.NoClassDefFoundError: org/eclipse/swt/SWTError
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Unknown Source)
    at java.lang.Class.getConstructor0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at org.eclipse.osgi.internal.framework.BundleContextImpl.loadBundleActivator(BundleContextImpl.java:755)
    at org.eclipse.osgi.internal.framework.BundleContextImpl.start(BundleContextImpl.java:706)
    at org.eclipse.osgi.internal.framework.EquinoxBundle.startWorker0(EquinoxBundle.java:941)
    at org.eclipse.osgi.internal.framework.EquinoxBundle$EquinoxModule.startWorker(EquinoxBundle.java:318)
    at org.eclipse.osgi.container.Module.doStart(Module.java:571)
    ... 42 more
Caused by: java.lang.ClassNotFoundException: org.eclipse.swt.SWTError cannot be found by org.eclipse.ui.workbench_3.107.0.v20150825-2206
    at org.eclipse.osgi.internal.loader.BundleLoader.findClassInternal(BundleLoader.java:439)
    at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:352)
    at org.eclipse.osgi.internal.loader.BundleLoader.findClass(BundleLoader.java:344)
    at org.eclipse.osgi.internal.loader.ModuleClassLoader.loadClass(ModuleClassLoader.java:160)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    ... 51 more
Root exception:
java.lang.NoClassDefFoundError: org/eclipse/swt/SWTError
...

!ENTRY org.eclipse.osgi 4 0 2016-08-05 09:50:30.988
!MESSAGE An error occurred while automatically activating bundle ca.uvic.chisel.atlantis (2).
!STACK 0
org.osgi.framework.BundleException: Error loading bundle activator.
    at org.eclipse.osgi.internal.framework.BundleContextImpl.start(BundleContextImpl.java:711)
etc etc...

我可以访问 osgi控制台,并获得更多信息:

osgi> ss org.eclipse.swt
"Framework is launched."


id      State       Bundle
82      RESOLVED    org.eclipse.swt_3.104.1.v20150825-0743
113     INSTALLED   org.eclipse.swt.win32.win32.x86_64_3.104.1.v20150825-0743
osgi> diag 113
org.eclipse.swt.win32.win32.x86_64 [113]
  Unresolved requirement: Require-Capability: eclipse.platform; filter:="(& (osg
i.ws=win32) (osgi.os=win32) (osgi.arch=x86_64))"

```

我的系统上有关SWT的更多详细信息......导出的应用程序有“/plugins/org.eclipse.swt.win32.win32.x86_64_3.104.1.v20150825-0743.jar”,它与指定的版本相同.product文件的“Plug-ins and Fragments”配置中的org.eclipse.swt.win32.win32.x86_64条目。 (还有org.eclipse.swt_3.104.1.v20150825-0743.jar和匹配的org.eclipse.swt)。捆绑片段要求如osgi控制台结果中所述,即“(&(osgi.ws = win32)(osgi.os = win32)(osgi.arch = x86_64))”。

在我的档案的前一个(正常运行)版本中,我看到它有org.eclipse.swt.win32.win32.x86_64_3.100.1.v4234e.jar。我不知道那时捆绑片段的要求是相同还是不同。我在本版本中无法访问osgi控制台,因为当时我没有包含必要的库。

查看其他捆绑包,我看到一些也没有解决状态。

发展背景

我正在Windows 7上开发,导出和运行项目。我的开发人员JRE系统库是jre1.8.0_101-b13。这与为运行Java应用程序安装的JRE版本相同(文件路径相同)。

C:\Atlantis Export\Atlantis 0.3.0 TEST 3>java -XshowSettings:properties -version
Property settings:
    awt.toolkit = sun.awt.windows.WToolkit
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    java.class.path = .
    java.class.version = 52.0
    java.endorsed.dirs = C:\Program Files\Java\jre1.8.0_101\lib\endorsed
    java.ext.dirs = C:\Program Files\Java\jre1.8.0_101\lib\ext
        C:\Windows\Sun\Java\lib\ext
    java.home = C:\Program Files\Java\jre1.8.0_101
    java.io.tmpdir = C:\Users\eric\AppData\Local\Temp\
    java.library.path = C:\ProgramData\Oracle\Java\javapath
        C:\Windows\Sun\Java\bin
        C:\Windows\system32
        C:\Windows
        C:\ProgramData\Oracle\Java\javapath
        C:\Windows\system32
        C:\Windows
        C:\Windows\System32\Wbem
        C:\Windows\System32\WindowsPowerShell\v1.0\
        C:\Program Files (x86)\pgmodeler
        C:\WinPython-64bit-3.4.3.5\python-3.4.3.amd64
        %USERPROFILE%\.dnx\bin
        C:\Program Files\Microsoft DNX\Dnvm\
        C:\Program Files\nodejs\
        C:\Program Files (x86)\Skype\Phone\
        C:\Windows\System32\WindowsPowerShell\v1.0\
        C:\Program Files\010 Editor
        C:\Users\eric\AppData\Roaming\npm
        .
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.8.0_101-b13
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Oracle Corporation
    java.specification.version = 1.8
    java.vendor = Oracle Corporation
    java.vendor.url = http://java.oracle.com/
    java.vendor.url.bug = http://bugreport.sun.com/bugreport/
    java.version = 1.8.0_101
    java.vm.info = mixed mode
    java.vm.name = Java HotSpot(TM) 64-Bit Server VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Oracle Corporation
    java.vm.specification.version = 1.8
    java.vm.vendor = Oracle Corporation
    java.vm.version = 25.101-b13
    line.separator = \r \n
    os.arch = amd64
    os.name = Windows 7
    os.version = 6.1
    path.separator = ;
    sun.arch.data.model = 64
    sun.boot.class.path = C:\Program Files\Java\jre1.8.0_101\lib\resources.jar
        C:\Program Files\Java\jre1.8.0_101\lib\rt.jar
        C:\Program Files\Java\jre1.8.0_101\lib\sunrsasign.jar
        C:\Program Files\Java\jre1.8.0_101\lib\jsse.jar
        C:\Program Files\Java\jre1.8.0_101\lib\jce.jar
        C:\Program Files\Java\jre1.8.0_101\lib\charsets.jar
        C:\Program Files\Java\jre1.8.0_101\lib\jfr.jar
        C:\Program Files\Java\jre1.8.0_101\classes
    sun.boot.library.path = C:\Program Files\Java\jre1.8.0_101\bin
    sun.cpu.endian = little
    sun.cpu.isalist = amd64
    sun.desktop = windows
    sun.io.unicode.encoding = UnicodeLittle
    sun.java.launcher = SUN_STANDARD
    sun.jnu.encoding = Cp1252
    sun.management.compiler = HotSpot 64-Bit Tiered Compilers
    sun.os.patch.level = Service Pack 1
    sun.stderr.encoding = cp437
    sun.stdout.encoding = cp437
    user.country = US
    user.dir = C:\Atlantis Export\Atlantis 0.3.0 TEST 3
    user.home = C:\Users\eric
    user.language = en
    user.name = eric
    user.script =
    user.timezone =
    user.variant =

java version "1.8.0_101"
Java(TM) SE Runtime Environment (build 1.8.0_101-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.101-b13, mixed mode)

我已经尝试过再次从火星升级到霓虹灯。这没有解决任何问题。降级到Juno以修复类似这样的事情就像是错误的解决方案。

1 个答案:

答案 0 :(得分:2)

所以...在准备我的答案时,我找到了解决方案。我知道,如果我之前有人将其反弹,那么我可能会发生这种情况。

我注意到$ {target.ws}和$ {target.os}出现在启动配置中。我不确定这些是如何添加的;也许产品文件生成了这些参数,也许我在尝试修复许多月前的另一个bug时添加了它们。在任何情况下,我都在谷歌上搜索如何检查这些值,并决定简单地删除它们并测试启动和导出没有它们。两者都很好。我不需要它们,我不确定它们是否包含值。

重申一下,我的解决方案是删除.product文件中的“-os $ {target.os} -ws $ {target.ws} -arch $ {target.arch}”参数(以及启动配置源自它。)

我可能已将它们添加到像这样的地方的建议中(但我不知道为什么):Eclipse Validation error - Platform filter did not match:(&(osgi.ws=win32)(osgi.os=win32)(osgi.arch=x86))。看看责备,我看到当我第一次将项目从使用手动定义的启动配置更改为使用基于.product的启动配置时,添加了参数;手动定义启动时,存在不一致和机器相关的字符串。我不知道它们是否被自动添加,或者我认为我是否需要它们。