views:

376

answers:

4

I'm looking for tips, suggestions, advice or examples of applications build using Google's Web Toolkit with Google AppEngine.

A: 

Here's a screencast on the subject: Using Java (GWT) with Google App Engine

Functionality seems very limited though since GAE uses Python + JavaScript and not Java.

mepcotterell
+1  A: 

Since Google AppEngine now supports Java using GWT just became a whole lot easier (ie. you can use GWT RPC).

Take a look this screencast.

stian
A: 

Can you elaborate more on why using GWT with the Java version of GAE would necessarily be a good idea?

I'm not arguing against it, and it seems obvious Java would be the way to go, but just wanted to hear the concrete reasons.

To answer my own question: GWT provides an interface called "GWT RPC" that allows you to talk directly to Java Servlets, therefore offering an amazing level of integration between client and server.

chris
A: 

The crux of the problem with GWT and GAE is that you want to use JDO to persist your objects when using GAE, and the bytecode manipulation done by the nucleus (JDO implementation) makes your domain objects no longer work with "GWT-RPC".

Today, the best solution is probably the Gilead GWT adapter for Google App Engine which is currently under early stage.