Reputation: 16931
To learn GWT and Google AppEngine (GAE) I'm trying to create a simple application using GWT with two or three objects (entities). In this application one object, let's say Student, encapsulates ArrayList of other objects, say Classes and Books. Then it creates list of Students and sends it to Java code on GAE and stores it to the data store.
Question: is it possible to do this kind of stuff using GWT + GAE + Google DataStore? Are there any examples/tutorials of using all these technologies at once?
Is it even worth it to use this tech. stack at this point?
Upvotes: 5
Views: 1320
Reputation: 5135
I would suggest the following:
The only part that the above tutorials won't help you with is storing an ArrayList of objects within an persistable object in Google DataStore. I'm not sure if that is actually possible; you might have to store each of the object types separately and then programmatically retrieve Classes and Books related to a specific Student using GQL.
Upvotes: 4
Reputation: 5610
You might want to check out Gilead and it's Adapter for Google AppEngine. There's even a sample project. I've gotten it working on my local machine in Eclipse, but I keep getting errors when it's deployed to GAE.
Upvotes: 0