Mint Linux GWT Quick Start Guide
Hi! The Tutorial shows you Step-by-Step How to Getting-Started with Google Web Toolkit Development on Linux Mint 17 Qiana LTS i386/amd64 Desktop.
To dispose of the Recommended Java Environment on Linux Mint follow Guide on Installing Oracle Java JDK on Mint.
At the core of GWT is a Java-to-JavaScript compiler that produces code capable of running on Internet Explorer, Firefox, Mozilla, Safari, and Opera.
The Google Web Toolkit (GWT) slashes through the issues that surround multibrowser Ajax development.
It moves the development lifecycle into the type-safe language of Java while retaining the capability to access JavaScript and third-party libraries.
The GWT provides a set of tools for communication that allow you to access server-side services written in any language,
This make it potential to integrate with frameworks such as Java-Server Faces (JSF), Spring, Struts, and Enterprise JavaBeans (EJBs).
GWT provides a rich set of tools for developing Rich Internet Applications and solving the problem of moving the desktop application into the browser, including a rich set of widgets and many other tools.
GWT also provides support for the JUnit testing framework and a special hosted-mode browser that lets you develop and debug in Java without ever needing to deploy your code to a server.
-
Open a Command Line Terminal Window
(Press “Enter” to Execute Commands).Ctrl+Alt+t
In case first see: Terminal QuickStart Guide.
-
Download the Standalone GWT SDK and Tools.
-
Double-Click on GWT Zip and Extract into /tmp/:
Or from Command Line:unzip -d /tmp/ gwt*.zip
-
Setting Up GWT:
sudo su -c "chown -R root:root /tmp/gwt*"
sudo su -c "mv /tmp/gwt* /opt/gwt"
-
Add GWT Tools to User Path:
nano $HOME/.bashrc
Append:
export PATH=$PATH:/opt/gwt
Ctrl+x to Save & Exit from nano Editor :)
-
How to Install Recommended Oracle JDK on Linux Mint
-
Quick-Start with GWT Web Apps Development