Home » Archives

Content tagged with: GWT

[5 Jul 2010 | No Comment | ]

For large GWT applications, there’s a lot you should think about early in the design of your project. GWT has a variety of technologies to help you, but putting it all together can be daunting. This session walks you through how teams at Google architect production-grade apps, from design to deployment, using GWT.

Slides

[31 Dec 2009 | No Comment | ]

In this session we’ll show how you can get the most out of GWT in development, testing and deployment. It’s based on our two and half years of experience building Lombardi Blueprint, a SaaS application for collaborative business process documentation. We’ll cover how you can effectively integrate GWT into your development process and how to structure your code and application to take advantage of GWT’s unique features in order to provide the best possible user experience. Focus: Achieving high performance, sharing code between client and server, building and testing your …

[29 Dec 2009 | No Comment | ]

GWT is a powerful toolkit from Google that enables you to create rich and dynamic user interfaces for the browser using Java. There’s no need to learn a new language (Javascript) and you can keep your existing Java IDE and tools.
http://skillsmatter.com/podcast/java-jee/create-slick-uis-for-your-grails-apps-with-gwt

[14 Dec 2009 | No Comment | ]

Google Web Toolkit (GWT) allows developers to build highly optimized, fast AJAX applications. GWT allows developers to code in the Java programming language using their favorite IDE tools, then cross-compile that source into plain JavaScript to be served just like any other webpage script. We’ll take a look at some performance techniques you can use in GWT to build even faster web apps.

[10 Dec 2009 | No Comment | ]

This video provides an overview of new features in Google Web Toolkit (GWT) 2.0, a tool which enables developers to produce highly optimized, browser-specific JavaScript for their apps. Bruce Johnson, Joel Webber, Andrew Bowers, and Adam Schuck walk you through the newest tools and features in GWT 2.0 such as uiBinder, code splitting, speed tracer, and more.

[7 Dec 2009 | No Comment | ]

The Google Web Toolkit (GWT) is an AJAX framework that enables developers to create rich user web pages with Java, it makes use of type-checking and code re-use. GWT compiles Java code to generate fast, cross-platform Javascript. The GWT-GRAILS plugin incorporates GWT code into your GSP pages, and it also simplifies the handling of RPC requests on the server. in this session, Peter Ledbrooke tells us more about the grails plugin for GWT.
http://skillsmatter.com/podcast/java-jee/ria-without-the-javascript-gwt-and-grails-1171

[30 Nov 2009 | No Comment | ]

Ajax, taken to its logical extreme, is essentially a 1990′s-style client/server architecture: one that has a vast, decentralized, and unpredictable network directly in its critical path. (The Internet, we’re talking about you.) Application developers have to grapple with network failures, latency, asynchonicity, multi-session synchronization, scalability, failover, cross-site scripting, and server security—and that’s in addition to actually being able to build an application in the first place. GWT gives you the plumbing to tackle these challenges head on, but finding the right architecture for your application can still be daunting. In …