Google Web Toolkit (GWT)
[GWT] Tutorials - Overview (gwtproject.org)
GWT is a development toolkit for building and optimizing complex browser-based applications.
GWT is used by many products at Google, including Google AdWords and Orkut.
GWT is an open source.
licensed under the Apache License version 2.0.
Google Web Toolkit (GWT) is a development toolkit to create RICH Internet Applications (RIA).
GWT provides developers option to write client-side application in JAVA.
GWT compiles the code written in JAVA to JavaScript code.
Application written in GWT is cross-browser compliant. GWT automatically generates javascript code suitable for each browser.
GWT is a framework to build large scale and high-performance web application while keeping them as easy-to-maintain.
Advantages of GWT
GWT provides easy integration with Junit and Maven.
Again, being Java based, GWT has a low learning curve for Java Developers.
GWT generates optimized javascript code, produces browser's specific javascript code by self.
GWT provides Widgets library provides most of tasks required in an application.
GWT is extensible and custom widget can be created to cater to application needs.
Disadvantages of GWT
Not Indexable − Web pages generated by GWT would not be indexed by search engines because these applications are generated dynamically.
Not Degradable − If your application user disables Javascript then user will just see the basic page and nothing more.
Not Designer's Friendly − GWT is not suitable for web designers who prefer using plain HTML with placeholders for inserting dynamic content at later point in time.
The GWT Components
The GWT framework can be divided into following three major parts −
1. GWT Java to JavaScript compiler
2. JRE Emulation library − Google Web Toolkit includes a library that emulates a subset of the Java runtime library. The list includes java.lang, java.lang.annotation, java.math, java.io, java.sql, java.util and java.util.logging
3. GWT UI building library − This part of GWT consists of many subparts which includes the actual UI components, RPC support, History management, and much more.
Comments
Post a Comment