Google app engine GWT部署到google应用程序引擎获取404错误

Google app engine GWT部署到google应用程序引擎获取404错误,google-app-engine,gwt,deployment,Google App Engine,Gwt,Deployment,我正在尝试学习如何将GWT应用程序部署到Google App Engine。 我正在使用GWT2.4+eclipse和Java7 我基本上有一个静态页面,上面有一个按钮,什么都不做 public class Test1 implements EntryPoint { public void onModuleLoad() { final Button sendButton = new Button("Send"); RootPanel.get().add(se

我正在尝试学习如何将GWT应用程序部署到Google App Engine。 我正在使用GWT2.4+eclipse和Java7

我基本上有一个静态页面,上面有一个按钮,什么都不做

public class Test1 implements EntryPoint {

  public void onModuleLoad() {
        final Button sendButton = new Button("Send");
        RootPanel.get().add(sendButton);
  }
} 
我已经创建了我的应用程序
iStoeumTesteName
,它在本地主机中工作。我已将其部署到应用程序引擎,没有错误。但是当我尝试访问页面
http://istoeumtestedenome.appspot.com/
,将显示404错误


我能做什么?

有很多事情可能出了问题。首先想到的是:

  • 静态HTML文件(主机页)位于错误的位置(文件夹)
  • 您没有在web.xml文件中指定欢迎页面,或者存在其他一些问题

  • 转到App Engine的管理控制台,然后单击日志以查看出现了什么问题。

    有任何信息吗?比如上传程序发布了什么?你可以查看在线日志,看看有没有什么好的。这是web.xml谢谢,我必须更加小心:P