vote up 4 vote down star
6

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, using JDO or JPA annotated objects. I would also like to be able to send my objects back and forth client-server using GWT Remote Procedure Calls (RPC), therefore my objects must be able to "detach". However, GWT RPC serialization cannot handle detached JDO/JPA objects and it doesn't appear as though it will in the near future.

My question: what is the simplest and most direct solution to this? Being able to share the same objects client/server with server-side persistence would be extremely convenient.

EDIT

I should clarify that I still wish to use GWT RPC with GAE's Datastore. I am just looking for the best solution that would allow all these technologies to work together.

flag
+1 for using a clustering web-based service for local data persistence. :-) – Jason Cohen Apr 14 at 22:21

6 Answers

vote up 3 vote down

Awhile ago I wrote a post Using an ORM or plain SQL?

This came up last year in a GWT application I was writing. Lots of translation from EclipseLink to presentation objects in the service implementation. If we were using ibatis it would've been far simpler to create the appropriate objects with ibatis and then pass them all the way up and down the stack. Some purists might argue this is Badâ„¢. Maybe so (in theory) but I tell you what: it would've led to simpler code, a simpler stack and more productivity.

which basically matches your observation.

But of course that isn't an option with Google App Engine so you're pretty much stuck having a translation layer between client-side objects and your JPA entities.

JPA entities are quite rigid so they're not really appropriate for sending back and forth between the client anyway. Typically you want little bits from several entities when doing this (thus ending up with some sort of presentation-layer value object). That is your path forward.

link|flag
vote up 3 vote down

Try use http://gilead.sourceforge.net/

link|flag
vote up 2 vote down

Ray Cromwell has a temporary hack up at http://timepedia.blogspot.com/2009/04/google-appengine-and-gwt-now-marriage.html. I've tried it, and it works.

It forces you to use Transient instead of Detachable entities, because GWT can't serialize a hidden Object[] used by DataNucleus; This means that the objects you send to the client can't be inserted back into the datastore, you must retrieve the actual datastore object, and copy all the persistent fields back into it. Ray's method uses reflection to iterate over the methods, retrieve the getBean() and setBean() methods, and apply the entity setBean() with your transient gwt object's getBean().

You should strive to use JDO, the JPA isn't much more than a wrapper class for now. To use this hack, you must have both getter and setter methods for every persistent field, using PROPER getBean and setBean syntax for every "bean" field. Well, ALMOST PROPER, as it assumes all getters will start with "get", when the default boolean field use is "is".

I've fixed this issue and posted a comment on Ray's blog, but it's awaiting approval and I'm not sure if he'll post it. Basically, I implemented a @GetterPrefix(prefix=MethodPrefix.IS) annotation in the org.datanucleus package to augment his work.

In case it doesn't get posted, and this is an issue, email x_AT_aiyx_DOT_info Re: @GetterPrefix for JDO and I'll send you the fix.

link|flag
vote up 1 vote down

You can consider using JSON. GWT has necessary API to parse & generate JSON string in the client side. You get a lot of JSON API for server side. I tried with google-gson, which is fine. It converts your JSON string to POJO model and viceversa. Hope this helps you providing a decent solution for your requirement

link|flag
vote up 0 vote down

since GWT ultimately compiles to JavaScript, for detached persistence it would need one of a few services available. the best known are HTML5 stores and Gears (both use SQLite!). of course, neither is widely deployed, so you'd have to convince your users to either use a modern browser or install a little-known plugin. be sure to degrade to a usable subset if the user doesn't comply

link|flag
By detached they are talking about sending hibernate etc enhanced dtos not persistance in the browser. – mP Apr 16 at 22:22
typical case of terms collision. – Javier Apr 16 at 22:47
vote up 0 vote down

http://www.resmarksystems.com/code/

Try this. It is a module for serializing GAE core types and send them to the GWT client.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.