Reputation: 1181
I was recently looking into Google Web Toolkit and it seemed really interesting. I was curious what can I really do with it, can I simple register and login system or similar things?
Upvotes: 4
Views: 1609
Reputation: 15331
Google Web Toolkit can be used in many ways:
... and many others. GWT is a very robust framework, IMHO. Maybe the question should be "Google Web Toolkit, what can't I do with it?" ;)
Upvotes: 9
Reputation: 13841
In short:
You can develop in a pretty easy way web AJAX applications in a desktop app way.
It is:
web AJAX application: page or bunch of pages that has Javascript and the like to communicate with the server and bring the data that changes (not all the data). Think in gmail or gmaps by example. Web that is pretty dynamic.
desktop-app way: using objects like panels, textboxes, events and event handlers, grids. Things you are used to use in a Window-app (like Swing, SWT, AWT, and the like).
Also tt helps a lot in: - optimizing javascript and loading of resources - making apps compatible with diferent browsers - maiking easy to build new components and re use them
Upvotes: 1
Reputation: 69392
You can write any kind of website with it:
Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications.
Translation:
GWT is a bunch of tools to help you make a website.
Upvotes: 2
Reputation: 4843
Here is a few example websites built using the Google Web Toolkit.
Should give you an idea what is possible.
Upvotes: 0
Reputation: 449783
That's an awfully broad question, isn't it?
From Wikipedia:
Google Web Toolkit (GWT /ˈɡwɪt/)) is an open source set of tools that allows web developers to create and maintain complex JavaScript front-end applications in Java. Other than a few native libraries, everything is Java source that can be built on any supported platform with the included GWT Ant build files. It is licensed under the Apache License version 2.0.1
...
Using GWT, developers can rapidly develop and debug AJAX applications in the Java language using the Java development tools of their choice. When the application is deployed, the GWT cross-compiler translates the Java application to standalone JavaScript files that are optionally obfuscated and deeply optimized.
For anything any more detailed, I think a more detailed question is needed.
Upvotes: 0