尝试运行我的Google Web Application(我一直在使用GWT在Eclipse中进行操作)时,它给了我这个错误:
“加载模块
com.example.pbot.Pbot
加载继承的模块“ com.example.pbot.Pbot”
[错误]无法在您的类路径中找到“ com / example / pbot / Pbot.gwt.xml”;可能是拼写错误,或者您可能忘记了为源添加类路径条目?
[ERROR] shell在doStartup方法中失败”
我所有的软件包都是com.pbot,com.pbot.client,com.pbot.server等;我不知道在哪里看到com.example。
gwt.xml文件中的入口点类是com.pbot.client.Pbot,这是我的入口点类。这是完整的gwt.xml:
-->
<!DOCTYPE module PUBLIC "-//Google Inc.//DTD Google Web Toolkit 2.5.1//EN"
"http://google-web-toolkit.googlecode.com/svn/tags/2.5.1/distro-source/core/src/gwt-module.dtd">
<module rename-to='pbot'>
<!-- Inherit the core Web Toolkit stuff. -->
<inherits name='com.google.gwt.user.User'/>
<!-- Inherit the default GWT style sheet. You can change -->
<!-- the theme of your GWT application by uncommenting -->
<!-- any one of the following lines. -->
<inherits name='com.google.gwt.user.theme.clean.Clean'/>
<!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> -->
<!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
<!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/> -->
<!-- Other module inherits -->
<!-- Specify the app entry point class. -->
<entry-point class='com.pbot.client.Pbot'/>
<!-- Specify the paths for translatable code -->
<source path='client'/>
<source path='shared'/>
</module>
我已经清理,刷新并重新启动了该项目,但我不知道该怎么办。它在哪里显示“ com.example?”请帮忙!
最佳答案
检查运行配置->参数。将有一个引用com.example.pbot.Pbot
。
我认为,这就是托马斯提到的。