我在编译我的应用程序时出错:
[INFO] Compiling module com.messagedna.web.Main
[INFO] Finding entry point classes
[INFO] [ERROR] Unable to find type 'com.messagedna.web.client.controller.Main'
[INFO] [ERROR] Hint: Previous compiler errors may have made this type unavailable
[INFO] [ERROR] 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
我试图在谷歌中找到解决方案,但没有找到任何解决方案。这是我的 gwt.xml 文件:
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 1.6//EN"
"http://google-web-toolkit.googlecode.com/svn/releases/1.6/distro-source/core/src/gwt-module.dtd">
<module>
<inherits name='com.extjs.gxt.ui.GXT'/>
<inherits name="com.extjs.gxt.charts.Chart"/>
<entry-point class='com.messagedna.web.client.controller.Main'/>
<source path="com.messagedna"></source>
</module>