GWT for beginners - Introduction.

Hi Everyone, from this post onwards I am planning to write about GWT (Google Web Toolkit) as it is currently used for many web development projects. GWT is an open source set of tools that allow web developers to create and maintain complex JavaScript front end applications in Java.

Following are some of the specifications and features of GWT :-

  • GWT is used to create RICH Internet Application (RIA).
  • GWT provides option to write client side application in JAVA.
  • GWT automatically generates javascript code suitable for each browser.
  • GWT provides full debugging capability. Developers can debug the client side application just as an Java Application.
  • GWT is licensed under apache license version 2.0.
  • GWT provides easy integration with JUnit and Maven.
  • GWT provides widget libraries.
  • GWT has simple RPC mechanism.
  • GWT has support for Internationalization and localization.
  • HTML canvas support.
  • GWT has support for using Google APIs.
  • A number of libraries are available for GWT, by Google and Third parties.
To start working with GWT, you have to download the plugin. Please visit the link - Download for downloading the GWT plugin. I have downloaded the GWT plugin in eclipse and after downloading the plugin, we can see a google icon in the eclipse toolbar. A screenshot of the google icon is shown below.


Using this plugin, we can create a web development project. In my upcoming posts, I will writing about some sample programs in GWT.

I hope everyone got a brief idea about GWT. Please see my upcoming posts to know more about GWT. Please comment below if you have any doubts/suggestions. All doubts will be responded soon.

Once again thank you for reading the post.

Comments

Popular posts from this blog

Difference between "diff" and "sdiff" commands in Unix

Anonymous classes in C++