2

我一辈子都无法在 GWT 项目中使用 vaadin 聚合物元件。我有一个新添加的 Java EE Eclipse Mars,我正在使用 Gwt 2.8.0 SNAPSHOT beta,从 1 月 11 日更新了来自sonatype的 Jars ,我已经-generateJsInteropExports设置了标签,但我仍然收到以下 jsinterop 错误. 据我所知,这应该在最新的测试版中得到修复,但它似乎对我不起作用,而且每晚构建并没有改变任何东西。有任何想法吗?

Super Dev Mode starting up
workDir: C:\Users\John\AppData\Local\Temp\gwt-codeserver- 700489888360387855.tmp
Loading inherited module 'com.test.Gwttest'
   Loading inherited module 'com.google.gwt.core.Core'
     Loading inherited module 'jsinterop.annotations.Annotations'
        [ERROR] Unable to find 'jsinterop/annotations/Annotations.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
4

1 回答 1

2

您也需要jsinterop-annotationsJAR 和源 JAR。从https://oss.sonatype.org/content/repositories/google-snapshots/com/google/jsinterop/jsinterop-annotations/1.0.0-SNAPSHOT/下载它们(以.jarand结尾的文件-sources.jar,例如jsinterop-annotations-1.0.0-20160111.054530-32.jarand jsinterop-annotations-1.0.0-20160111.054530-32-sources.jar

于 2016-01-13T11:01:09.680 回答