GWT
1.1、GWT简介
是什么 ?:Google Web Toolkit
开发语言:Java
开发组织:Google
官方主页:http://www.gwtproject.org
源码仓库:https://github.com/gwtproject

GWT的目标是:

1、开发人员通过GWT SDK提供的Java API编写Web前端。

2、通过GWT SDK提供的工具将Java语言转化为JavaScript语言。

GWT能够让熟悉Java语言的开发者(通常是后端开发者)很容易的实现前端界面。

1.2、通过包管理器安装GWT
操作系统包管理器安装命令
macOSHomeBrewbrew install gwt
GNU/LinuxHomeBrewbrew install gwt
aptsudo apt-get install -y gwt
Alpine Linuxapksudo apk add gwt

Arch Linux

ArcoLinux

Manjaro Linux

pacmansudo pacman -Syyu --noconfirm
sudo pacman -S    --noconfirm gwt
Gentoo LinuxPortagesudo emerge gwt
1.3、通过下载预编译好的二进制压缩包安装GWT

step1、安装依赖

所有时Terminal + Shell
下载时cURL
运行时JRE | JDK

step2、使用curl命令下载预编译好的GWT二进制压缩包 (

curl -LO http://storage.googleapis.com/gwt-releases/gwt-2.8.1.zip

step3、使用unzip解压GWT压缩包

unzip gwt-2.8.1.zip -d ~/bin

step4、配置PATH环境变量

export PATH=$PATH:~/bin/gwt-2.8.1
1.4、GWT中包含的工具