Google App Engine datastore remote integration
How would one go about using the Google App Engine datastore as a database for remote stand alone java programs?
Is anyone aware of a framework that could serialize the entities and make them available in other projects as java model classes?
Currently, I'm using a homebrewn servlet deployed on GAE which breaks it down to JSON (GSON) and then rebuild it at arrival, this is beginning to get messy now that the project has grown, and is not really flexible.
I do also need to persis开发者_StackOverflow社区t some entities from javascript, alas the servlet/json/ajax mash. Someone pointed me towards the REST framework, would you agree?
Sounds like you want their ProtoRPC API.
精彩评论