GWT 在增量编译警告标志设置为 true 时"No source code is available for type"



当标志incrementalCompileWarnings未设置为true时(对于maven gwt插件),我们的项目编译良好。设置好后,会出现以下几个错误:

Tracing compile failure path for type 'my.module.client.entryPoint.MyModuleEntryPoint'
[INFO]       [ERROR] Errors in 'jar:file:/path/to/jar.jar!/my/module/client/entryPoint/MyModuleEntryPoint.java'
[INFO]          [ERROR] Line 76: No source code is available for type my.module.service.client.SomeClientClass; did you forget to inherit a required module?

然而,我在MyModule.gwt.xml:中有一行是必需的

  <inherits name="my.module.service.client.SomeClient"/>

是什么原因导致了问题?

错误表明文件是从jar中检索的。可能是这个罐子不是最新的。

相关内容

  • 没有找到相关文章

最新更新