我正在尝试学习如何将 GWT 应用程序部署到 Google App Engine。我在 Java 7 中使用 GWT 2.4 + eclipse。
我基本上有一个带有不做任何事情的按钮的静态页面。
public class Test1 implements EntryPoint {
public void onModuleLoad() {
final Button sendButton = new Button("Send");
RootPanel.get().add(sendButton);
}
}
我已经创建了我的应用程序istoeumtestedenome
,并且在 localhost 中它可以工作。我已将其部署到 App Engine,没有任何错误。但是当我尝试访问该页面http://istoeumtestedenome.appspot.com/
时,会显示 404 错误。
我能做些什么?