2

我的第一个 GWT 程序没有运行并显示错误,如下所示。请帮忙。我不明白出了什么问题:(这是控制台中显示的内容。

Loading modules
   com.BasicProject.basic
      Loading inherited module 'com.BasicProject.basic'
         [ERROR] Unable to find 'com/BasicProject/basic.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
[ERROR] shell failed in doStartup method
4

1 回答 1

5

您的<PROJECT>.gwt.xml文件包含无效<inherits.../>行。

如果您尝试继承某个模块,则必须传递该模块gwt.xml文件的路径。

你的模块有这个结构:

src
    - com.BasicProject.basic
        - client
        - server
        - shared
        - Basic.gwt.xml

你的<inherits.../>台词应该这样说:

<inherits name='com.BasicProject.basic.Basic'/>

因为你必须继承Basic.gwt.xml.

有关详细信息,请参阅本文的加载模块部分:http: //www.gwtproject.org/doc/latest/DevGuideOrganizingProjects.html#DevGuideModuleXml

于 2013-09-19T15:42:45.393 回答