GWT - 部署应用程序



本教程将解释如何创建一个应用程序 “war” 文件以及如何在 Apache Tomcat Web 服务器根目录中部署该文件。

如果您理解了这个简单的示例,那么您也可以按照相同的步骤部署复杂的 GWT 应用程序。

让我们使用已安装 GWT 插件的 Eclipse IDE,并按照以下步骤创建一个 GWT 应用程序:

步骤 描述
1 GWT - 创建应用程序章节所述,在一个名为com.tutorialspoint的包下创建一个名为HelloWorld的项目。
2 修改HelloWorld.gwt.xmlHelloWorld.cssHelloWorld.htmlHelloWorld.java,如下所述。保持其余文件不变。
3 编译并运行应用程序,以确保业务逻辑符合要求。
4 最后,将应用程序 war 文件夹的内容压缩成 war 文件,并将其部署到 Apache Tomcat Web 服务器。
5 使用最后一步中解释的适当 URL 启动您的 Web 应用程序。

以下是修改后的模块描述符src/com.tutorialspoint/HelloWorld.gwt.xml的内容。

<?xml version = "1.0" encoding = "UTF-8"?>
<module rename-to = 'helloworld'>
   <!-- Inherit the core Web Toolkit stuff.                        -->
   <inherits name = 'com.google.gwt.user.User'/>

   <!-- Inherit the default GWT style sheet.                       -->
   <inherits name = 'com.google.gwt.user.theme.clean.Clean'/>

   <!-- Specify the app entry point class.                         -->
   <entry-point class = 'com.tutorialspoint.client.HelloWorld'/>

   <!-- Specify the paths for translatable code                    -->
   <source path = 'client'/>
   <source path = 'shared'/>

</module>

以下是修改后的样式表文件war/HelloWorld.css的内容。

body {
   text-align: center;
   font-family: verdana, sans-serif;
}

h1 {
   font-size: 2em;
   font-weight: bold;
   color: #777777;
   margin: 40px 0px 70px;
   text-align: center;
}

以下是修改后的 HTML 主机文件war/HelloWorld.html的内容。

<html>
   <head>
      <title>Hello World</title>
      <link rel = "stylesheet" href = "HelloWorld.css"/>
      <script language = "javascript" src = "helloworld/helloworld.nocache.js">
      </script>
   </head>

   <body>
      <h1>Hello World</h1>
      <div id = "gwtContainer"></div>
   </body>
</html>

我稍微修改了一下之前的示例中的 HTML。在这里,我创建了一个占位符<div>...</div>,我们将使用我们的入口点 Java 类在其中插入一些内容。因此,让我们看一下 Java 文件src/com.tutorialspoint/HelloWorld.java的内容。

package com.tutorialspoint.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.RootPanel;

public class HelloWorld implements EntryPoint {
   public void onModuleLoad() {
      HTML html = new HTML("<p>Welcome to GWT application</p>");
      
      RootPanel.get("gwtContainer").add(html);
   }
}

在这里,我们创建了一个基本的部件 HTML 并将其添加到 id 为“gwtContainer”的 div 标签内。我们将在接下来的章节中学习不同的 GWT 部件。

完成所有更改后,让我们像在GWT - 创建应用程序章节中那样,在开发模式下编译并运行应用程序。如果您的应用程序一切正常,则会产生以下结果:

GWT Application Result2

创建 WAR 文件

现在我们的应用程序运行良好,我们可以将其导出为 war 文件。

请按照以下步骤操作:

  • 进入项目的war目录C:\workspace\HelloWorld\war

  • 选择 war 目录中所有可用的文件和文件夹。

  • 将所有选定的文件和文件夹压缩到一个名为HelloWorld.zip的文件中。

  • HelloWorld.zip重命名为HelloWorld.war

部署 WAR 文件

  • 停止 tomcat 服务器。

  • HelloWorld.war文件复制到tomcat 安装目录 > webapps 文件夹。

  • 启动 tomcat 服务器。

  • 查看 webapps 目录,应该已经创建了一个名为helloworld的文件夹。

  • 现在 HelloWorld.war 已成功部署到 Tomcat Web 服务器根目录。

运行应用程序

在 Web 浏览器中输入 URL:https://127.0.0.1:8080/HelloWorld以启动应用程序

服务器名称 (localhost) 和端口 (8080) 可能因您的 tomcat 配置而异。

GWT Application Result3
广告