2

我正在尝试将项目从 gwt-2.6.1 迁移到 gwt-2.7。但是,我面临一个问题。由于某种原因,gwt 编译器忽略了 .gwt.xml 中的继承模块之一。所以我在.gwt.xml中有这样的东西:

  <source path="">
    ...
    <exclude name="servlet/**"/>
  </source>

但是在使用带有 gwt-maven-plugin 的 maven 进行编译时,我不断收到这样的错误:

 Tracing compile failure path for type 'my.module.servlet.SomeClass'
[INFO]       [ERROR] Errors in 'jar:file:/path/to/jar/servlet/SomeClass.java'
[INFO]          [ERROR] Line 15: No source code is available for type javax.servlet.ServletContext; did you forget to inherit a required module?

如您所见,gwt 尝试编译 servlet 目录中的文件,该文件在 .gwt.xml 中被排除。可能是什么原因?gwt-2.6.1 没有这样的问题。

编辑:我发现(在 gwt-maven-plugin 配置中)

<configuration>
  <incrementalCompileWarnings>true</incrementalCompileWarnings>
</configuration>

是导致问题的原因(没有它项目编译)。然而,问题仍然存在。

4

1 回答 1

2

我遇到了同样的问题,

<source path="plugin/campaign/rpc">
    <exclude name="**/impl/**"/>
</source>

现在在 GWT 2.7 中给了我错误,impl 下的 java 文件没有被忽略。事实证明,该文件夹有一个错字,实际上被称为“Impl”,所以从 2.7 开始似乎不排除现在区分大小写。

我不知道这是否是您的问题,但它解决了我的问题。

于 2015-05-11T15:42:00.723 回答