我正在尝试将项目从 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>
是导致问题的原因(没有它项目编译)。然而,问题仍然存在。