0

按照本教程,我可以使用 eclipse 执行 GWT 应用程序。我可以访问该应用程序http://127.0.0.1:8888/De_vogella_gwt_helloworld.html?gwt.codesvr=127.0.0.1:9997

在此处输入图像描述

在此处输入图像描述

然后,我用谷歌搜索找到一种将应用程序部署到 tomcat 的方法,我找到了这个网站。将 GWT 应用程序导出到 tomcat 有两步方法。

  1. 将 src 目录导出到 jar 文件中。
  2. 使用ant创建一个war文件。

hello.war我将文件复制到/Library/Tomcat/webapps中,并打开浏览器localhost:8080/hello以获取此错误。

在此处输入图像描述

当我单击 webapps 目录中的 HTML 文件时,我认为包装有问题。

在此处输入图像描述

可能有什么问题?

4

2 回答 2

3

您需要编译 GWT 应用程序以在生产模式下运行。有关详细步骤(对于 GWT 2.4),请参阅GWT 文档的此部分。

于 2012-09-19T14:33:37.167 回答
0

From David's answer, I could get it working.

I had to compile the application again.

enter image description here

to get it working.

enter image description here

于 2012-09-19T15:18:01.560 回答