在eclipse中将GWT应用程序部署到tomcat的问题

时间:2012-09-19 14:00:09

标签: eclipse gwt tomcat

关注this tutorial,我可以使用eclipse执行GWT应用程序。我可以通过http://127.0.0.1:8888/De_vogella_gwt_helloworld.html?gwt.codesvr=127.0.0.1:9997访问该应用。

enter image description here

enter image description here

然后,我用Google搜索找到将应用程序部署到tomcat的方法,然后我找到了this site。它有两步将GWT应用程序导出到tomcat。

  1. 将src目录导出到jar文件中。
  2. 使用ant创建一个war文件。
  3. 我将hello.war文件复制到/Library/Tomcat/webapps,并使用localhost:8080/hello打开浏览器以获取此错误。

    enter image description here

    当我点击webapps目录中的HTML文件时,我觉得包装有问题。

    enter image description here

    可能出现什么问题?

2 个答案:

答案 0 :(得分:3)

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

答案 1 :(得分:0)

大卫的回答,我可以让它发挥作用。

我不得不再次编译应用程序。

enter image description here

让它发挥作用。

enter image description here