2
我想學習如何部署到谷歌應用引擎的GWT應用程序。 我正在使用GWT 2.4 + Eclipse與Java 7.日食GWT部署到谷歌應用引擎得到404錯誤
我基本上有一個靜態頁面,其中沒有任何按鈕。
public class Test1 implements EntryPoint {
public void onModuleLoad() {
final Button sendButton = new Button("Send");
RootPanel.get().add(sendButton);
}
}
我創建我的應用程序istoeumtestedenome
,並在本地主機它的工作原理。我已經將它部署到App Engine中,沒有任何錯誤。但是當我嘗試訪問頁面http://istoeumtestedenome.appspot.com/
時,會顯示404錯誤。
我該怎麼辦?
任何信息?像上傳過程發佈什麼?你可以檢查在線日誌,看看有沒有什麼 –