我的第一个gwt应用程序没有显示按钮

时间:2013-05-10 16:40:10

标签: java gwt

我开始使用gwt而且我无法理解为什么我的应用程序无法显示任何按钮,即使在我的代码中我已指示要创建的按钮。

我的入门点类是

package com.france.webapp.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.RootPanel;

public class MyEntryPoint implements EntryPoint {

public MyEntryPoint(){
}

    @Override
    public void onModuleLoad() {
    Label label = new Label("Hello GWT !!!");
    Button button = new Button("Say something");

    button.addClickHandler(new ClickHandler() {
      @Override
      public void onClick(ClickEvent event) {
        Window.alert("Hello, again");
      }
    });

    RootPanel.get().add(label);
    RootPanel.get().add(button);
  }
}

我在Windows上使用最新版本的jdk和eclipse juno.My应用程序运行并显示html页面但没有按钮。我已经使用最新版本的chrome和firefox 20使用gwt开发插件测试了它。

我是否必须编译项目或运行方式 - > Web应用程序选项足以显示按钮?我的gwt.xml看起来很好,我正在关注http://www.vogella.com/articles/GWT/article.html

的教程

这是我的MyModule.gwt.xml

<?xml version="1.0" encoding="UTF-8"?>
<!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>
    <inherits name="com.google.gwt.user.User" />
    <source path="client" />
    <entry-point class="com.france.webapp.client.MyEntryPoint"></entry-point>
</module>

我的html.html文件

<!doctype html>
<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <title>html</title>
    <script type="text/javascript" language="javascript" src=".nocache.js"></script>
  </head>

  <body>
    <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>

  </body>
</html>

我查看了eclipse控制台,这就是它的内容

[WARN] 404 - GET /.nocache.js (127.0.0.1) 1397 bytes
   Request headers
      Host: 127.0.0.1:8888
      Connection: keep-alive
      Accept: */*
      User-Agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.31 (KHTML, like Gecko) Chrome/26.0.1410.64 Safari/537.31
      Accept-Encoding: gzip,deflate,sdch
      Accept-Language: en-US,en;q=0.8
      Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
      Referer: http://127.0.0.1:8888/html.html?gwt.codesvr=127.0.0.1:9997

1 个答案:

答案 0 :(得分:1)

您的html文件可能存在问题。我成功运行了您的代码,尝试将其作为项目中war文件夹下的html文件的内容:

<!doctype html>
<!-- The DOCTYPE declaration above will set the     -->
<!-- browser's rendering engine into                -->
<!-- "Standards Mode". Replacing this declaration   -->
<!-- with a "Quirks Mode" doctype is not supported. -->

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">

    <!--                                                               -->
    <!-- Consider inlining CSS to reduce the number of requested files -->
    <!--                                                               -->
    <link type="text/css" rel="stylesheet" href="MyEntryPoint.css">

    <!--                                           -->
    <!-- Any title is fine                         -->
    <!--                                           -->
    <title>Web Application Starter Project</title>

    <!--                                           -->
    <!-- This script loads your compiled module.   -->
    <!-- If you add any GWT meta tags, they must   -->
    <!-- be added before this line.                -->
    <!--                                           -->
    <script type="text/javascript" language="javascript" src="myentrypoint/myentrypoint.nocache.js"></script>
  </head>
  <body>
  </body>
</html>

并确保它位于com.france.webapp包下的项目xxx.gwt.xml中:

<entry-point class='com.france.webapp.client.MyEntryPoint'/>

在通过Eclipse / jetty运行应用程序时,加载小部件需要几秒钟,有时需要10秒或更长时间。