I have extensive experience with GWT (started with version 1.3 then jumped to 1.5), and to me, GWT is probably the greatest SDK to come out since the JDK itself.
Yes, it does have some shortcomings, as anything else. But for the development of web applications with a Java back-end, no other alternative comes close, in my opinion. Most of all, because not having to divide the codebase between two different languages is a big boost to productivity (not to mention that tools for JavaScript are much more limited), and because UI code really belongs in the client (ie, why overload the server with the responsibility of running UI code when there is a powerful runtime platform - the modern Web browser - in the client machine?).
Compile time from Java to JavaScript is too long, but developers should be using hosted mode most of the time (and out-of-process host mode, coming in GWT 2.0, will improve this considerably).
Another significant difficulty with GWT is bridging the client-server divide. Coding specific DTO classes is no good, but it can be avoided. Unfortunatelly, no one yet developed an OpenSource solution to that. I did create such a solution for a closed-source project, using a single RemoteService implementation on the server, which would populate beans with data in a generic DTO object, and dispatch the call to an appropriate business method, as specified through Java 5 annotations in the RemoteService interface. It worked really well, and I am thinking of implementing it again, this time as OpenSource.
I think we will only see GWT grow in popularity. The only real alternatives would be Adobe Flex, Silverlight, and JavaFX. For a large business web application, coding in JavaScript is not an option, and running UI logic in the server is obsolete.