carrier
carrier

Reputation: 33079

Do you have any comments on using GWT with Appengine?

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

Upvotes: 0

Views: 524

Answers (4)

Reputation:

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.

Upvotes: 0

Chris
Chris

Reputation: 1587

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.

Upvotes: 0

stian
stian

Reputation: 2894

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.

Upvotes: 1

mepcotterell
mepcotterell

Reputation: 2710

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.

Upvotes: 0

Related Questions