我已经尝试过搜索,但无法找到一个明确的方法来将您自己的包添加到 GWT 项目中。
我的树结构如下所示:
-com.mycompany
-public
MyApplication.html
MyApplication.gwt.xml
-com.mycompany.client
MyApp.java
-com.mycompany.gui
TableLayout.java
我在那里看到的答案说要添加相对于 gwt.xml 文件的根目录的包,如下所示:
<module>
<inherits name="com.google.gwt.user.User" />
<entry-point class="com.mycompany.client.MyApp" />
<source path="client" />
<source path="gui" />
</module>
然后它抱怨:
Unable to find type 'com.technicon.client.MyApp'
Hint: Previous compiler errors may have made this type unavailable
Hint: Check the inheritance chain from your module; it may not be inheriting a required module or a module may not be adding its source path entries properly
谁能告诉我我做错了什么以及如何解决这个问题?