Google Web Toolkit (GWT) is a development toolkit for building and optimizing complex browser-based applications. Its goal is to enable productive development of high-performance web applications without the developer having to be an expert in browser quirks, XMLHttpRequest, and JavaScript. GWT is used by many products at Google, including Google Wave and the new version of AdWords. It's open source and completely free.

learn more… | top users | synonyms (2)

111
votes
19answers
19k views

Biggest GWT Pitfalls?

I'm at the beginning/middle of a project that we chose to implement using GWT. Has anyone encountered any major pitfalls in using GWT (and GWT-EXT) that were unable to be overcome? How about from a ...
67
votes
22answers
37k views

Best GWT widget library?

Question for all the GWT gurus out there - which is the best GWT widgets library out there? And why? List based on the answers: Default EXT-GWT GWT Components Library GWT-EXT GWT Widget Library ...
62
votes
10answers
26k views

How do I speed up the gwt compiler?

We're starting to make heavier use of GWT in our projects, and the performance of the GWT compiler is becoming increasingly annoying. We're going to start altering our working practices to mitigate ...
45
votes
13answers
29k views

Should I use Vaadin Framework

I just tried to play with Vaadin Framework and it seems to me very easy to use. Plus what I like about his framework is that it is built on top of GWT. What do you think, should I continue using this ...
40
votes
6answers
24k views

How to use GWT 2.1 Data Presentation Widgets

At the 2010 Google IO it was announced that GWT 2.1 would include new Data Presentation Widgets. 2.1M is available for download, and presumably the widgets are included, but no documentation has yet ...
37
votes
5answers
19k views

Maven GWT 2.0 and Eclipse

Does anyone know of a good guide for creating a project with the new 2.0 release of GWT using maven and eclipse? I am running into a lot of problems getting them to play nicely together. For what ...
31
votes
13answers
16k views

Why should I use jQuery instead of GWT?

I need to decide between jQuery and GWT for my new project. I haven't programmed in JavaScript for a while and I was looking into GWT for the last few days and it looks pretty awesome generating all ...
30
votes
9answers
4k views

How does the live, real-time typing work in Google Wave?

I'm sure Wave doesn't poll the server every millisecond to find out if the other user has typed something... so how can I see what the other person is typing as they type? And without hogging the ...
29
votes
6answers
25k views

Multiple pages tutorial in Google Web Toolkit (GWT)

I just started learning Google Web Toolkit (GWT). How do I make different HTML pages in my GWT application? For example, I want to create an application for a book store. In this application I'll ...
28
votes
8answers
31k views

GWT Custom Event Handler

Can someone give me an example of creating a custom set of an Event and a Handler. Say you have a Person object that you want your widgets to know if it got updated. You create a HandlerManager and ...
28
votes
15answers
22k views

Json <-> Java serialization that works with GWT

I am looking for a simple Json (de)serializer for Java that might work with GWT. I have googled a bit and found some solutions that either require annotate every member or define useless interfaces. ...
28
votes
13answers
14k views

GWT vs Flex vs?

My company is trying to migrate away from a .NET application to something that is purely web-based, and very "ajaxy". The original .NET app is fairly interactive, roughly equivalent to Google Maps as ...
25
votes
5answers
6k views

When should I use RequestFactory vs GWT-RPC?

I am trying to figure out if I should migrate my gwt-rpc calls to the new GWT2.1 RequestFactory cals. Google documentation vaguely mentions that RequestFactory is a better client-server communication ...
25
votes
10answers
2k views

Has anyone used GWT and can say it really delivers what it promises?

I am a long time Java web developer and as most web developers I have used quite a lot of JavaScript. Even though I don't hate JavaScript as many other Java developers, I am still aware of its faults. ...
24
votes
10answers
4k views

Is a colon safe for friendly-URL use?

We are designing a URL system that will specify application sections as words separated by slashes. Specifically, this is in GWT, so the relevant parts of the URL will be in the hash (which will be ...
24
votes
5answers
10k views

Looking for pros/cons of using GWT or JSF [closed]

I'm a long time Java developer who has been building UI with Adobe Flex for the past few years. I'm looking to broaden my repertoire with a RIA technology that runs in a plain-old browser, no ...
24
votes
1answer
17k views

GWT: Capturing URL parameters in GET request

I need to build a GWT application that will be called by an external application with specific URL parameters. For example: http://www.somehost.com/com.app.client.Order.html?orderId=99999. How do ...
23
votes
5answers
1k views

GWT “database” (client-side)

I'm looking for something like a database for GWT objects (inside the browser). It must work without HTML5 or Gears (or any browser plugins). It doesn't have to be capable of everything a database can ...
23
votes
7answers
17k views

The cons and pros of smartGWT

I'm starting work on a smartGWT project in a few days and I'd like to know what kind of experiences you had. To avoid making this a bashing of smartGWT or GWT or a freestyle discussion, I'm going to ...
22
votes
7answers
2k views

to GWT or not to GWT

I'm a Java developer. To be honest, I'm a little intimidated about writing lots of javascript, so the idea of writing a web app completely in Java with GWT appeals to me! I'm planning a new web app ...
21
votes
1answer
947 views

handling GWT RequestFactory server error responses

I have a newly coded GWT/GAE app that uses RequestFactory and Editors on the client and a custom Objectify DAO Service on the back. The flush() then persist() paths work fine on success. Client side ...
20
votes
5answers
8k views

Regular Expressions and GWT

My questions is: Is there a good solution to use regular expression in GWT? I'm not satisfied with the use of String.split(regex) for example. GWT translates the Code to JS and then uses the regex as ...
20
votes
6answers
17k views

Java Generics: Generic type defined as return type only

I'm looking at some GXT code for GWT and I ran across this use of Generics that I can't find another example of in the Java tutorials. The class name is com.extjs.gxt.ui.client.data.BaseModelData if ...
19
votes
5answers
5k views

How to declare dependent style names with UiBinder

I have a simple UiBinder widget containing a TextArea: <!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent"> <ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder" ...
18
votes
2answers
714 views

C interpreter written in javascript

Is there any C interpreter written in javascript or java ? I don't need a full interpreter but I need to be able to do a step by step execution of the program and being able to see the values of ...
18
votes
7answers
12k views

GWT & HTML5 Video in Mobile Safari

I'm trying to code a site in GWT that plays videos with HTML5. Everything works great on the desktop, but mobile Safari on both the iPhone and iPad do not play the video. I can play a video using ...
18
votes
4answers
7k views

GWT theme style overrides my css style

I have some html files with their own css. I want to use them in a gwt application so i copied the html and the css files in the application. The problem is when i open the html it uses the gwt theme ...
18
votes
5answers
8k views

What's your recommendation for architecting GWT applications? MVC, MVP or custom messaging solution?

I just started a new GWT project for a client and I'm interested in hearing people's experience with various GWT MVC architectures. On a recent project, I used both GXT MVC, as well as a custom ...
18
votes
4answers
36k views

Basic File upload in GWT

I'm trying to figure out how to upload one file using GWTs FileUpload widget. I'm using GWT and Google AppEngine with Java but I would like to upload file to my own Linux server. I have the following ...
18
votes
8answers
17k views

GMail like file upload progress bar with GWT?

All Gmail users should have already noticed that file upload progress bar has been updated recently. I'm wondering such effect is possible to implement with GWT. I'm fairly new with GWT, so if any ...
18
votes
9answers
13k views

Best data binding solution for GWT

Have you ever used one of the many half-baked data binding solutions for GWT? If so, how well did it work? I'd like to stop rolling my own bindings for GWT but there's no clear winner in the data ...
18
votes
8answers
14k views

How do I add a type to GWT's Serialization Policy whitelist?

GWT's serializer has limited java.io.Serializable support, but for security reasons there is a whitelist of types it supports. The documentation I've found, for example this FAQ entry, says that any ...
17
votes
3answers
790 views

Hidden Features of Google Web Toolkit 2

I'm curious to find out what the obscure and hidden features of Google Web Toolkit 2 (GWT) are. If you know of any tricks/features - that are uncommon, undocumented or hidden in the Javadocs then ...
17
votes
4answers
5k views

Why GWT? Advantages and Trade-Offs of Using This RIA Framework

I'm new to stackoverflow and have been reading through a bunch of the "highest voted" questions for GWT. Several of these questions talk about the pitfalls or problems with GWT. In the articles: ...
17
votes
5answers
3k views

Sending persisted JDO instances over GWT-RPC

I've just started learning Google Web Toolkit and finished writing the Stock Watcher tutorial app. Is my thinking correct that if one wants to persist a business object (like a Stock) using JDO and ...
16
votes
2answers
7k views

Why use GWT.create() instead of new?

What is the difference between GWT.create(SomeClass.class) and new SomeClass()? Why would you use one over the other?
15
votes
24answers
2k views

Which applications would you like to see integrated with Google Wave?

Google Wave has some very interesting features in it, mostly the integration ones. Which applications (web or not) would you like to see integrated with it first, when it launches?
14
votes
4answers
9k views

GWT Custom Events

Hey I have a problem getting my head around how custom GWT event Handlers work. I have read quite a bit about the topic and it still is some what foggy. I have read threads here on Stackoverflow like ...
14
votes
6answers
8k views

Problems passing class objects through GWT RPC

I've run through the Google Web Toolkit StockWatcher Tutorial using Eclipse and the Google Plugin, and I'm attempting to make some basic changes to it so I can better understand the RPC framework. ...
14
votes
6answers
7k views

Best pageable table implementation in GWT

I need to add a paging, sortable table to my GWT application. I see lots of these out there so I'm looking for your experience to save me time by choosing the best one. So far I'm looking at... ...
13
votes
2answers
526 views

When not to use Google Web Toolkit? [closed]

I'm considering use of GWT on a major in-house web app development project, namely it's major advantage in my eyes is the cross-compilation to Javascript which would (at least theoretically) help my ...
13
votes
4answers
535 views

How does the scrolling on “Google Maps for Mobile” work?

Visit http://www.google.com/gmm with a mobile device - the scrolling is super smooth even with floating toolbars. How are they accomplishing this with GWT? Update I mean the site as seen by a mobile ...
13
votes
5answers
912 views

What is the use GWT generator?

I have seen that GWT framework is having generator feature. In what case we have to use gwt generator option and why it is needed? Can anyone tell me simply why,what is gwt generator? Done some ...
13
votes
11answers
16k views

Google Web Toolkit (GWT) + Google App Engine (GAE) + Detached Data Persistence

I would like to develop a web-app requiring data persistence using GWT and GAE. As I understand it, my only (or at least by far the most convenient) option for data persistence is GAE's Datastore, ...
13
votes
3answers
2k views

Anyone use Pyjamas (pyjs) python to javascript compiler (like GWT..)

Has any one used this? I don't have a large background in Javascript and this lib looks like it may speed things along. www.pyjs.org
13
votes
12answers
6k views

Should I use Google Web Toolkit for my new webapp?

I would like to create a database backed interactive AJAX webapp which has a custom (specific kind of events, editing) calendaring system. This would involve quite a lot of JavaScript and AJAX, and I ...
12
votes
2answers
1k views

GWT - easiest way to do a simple loading screen until file is loaded

When clicking a button, my GWT application returns a PDF file embedded in an HTML page which looks something like: <html><head></head> <body marginwidth="0" marginheight="0" ...
12
votes
5answers
5k views

How to use the GWT editor framework for validation?

I am trying to integrate with the new GWT Editor framework of GWT 2.1.0. I also want to add my validation checks into the framework. However, I am struggling to find a decent example how to do this. ...
12
votes
3answers
4k views

Guava r07, GWT and javax.annotation.Nullable

I'm trying to use Guava in a GWT project without success (a HashMultimap, to be precise). I get a never-ending list of stacktraces for classes: com.google.common.collect.ComparisonChain ...
12
votes
5answers
3k views

Real-world ZK vs GWT experience

A fellow developer and I are putting together a proposal for a new application, and we've presented both ZK and GWT to be possible choices. After messing around with both, I'd prefer to move ahead ...

1 2 3 4 5 142