I am using Google App Engine datastore to store 4 String values.The String vlaues are added to the datastore in a servlet:
I am approaching to Gwt + Gae world. My essential need is to send over the Gwt-Rpc wire my Entity classes, without duplicating them into DTOs.
I\'m using Objectify to try and persist some custom type Objects and then retrieve them using a query.
I have a large object that I store using objectify. I need a lis开发者_StackOverflowt of those objects with only subset of the properties populated. How can this be done?App Engine stores and retrieve
Is it possible to use some mocking framework with Objectify? I\'ve tried the following, but it doesn\'t work:
I have class A and class B (which extends A). I\'d like to store them both as the same entity type WITHOUT using the @Subclass keyword. I don\'t want to use the polymorphic queries (for now) because i
I a new programmer and trying to implement a facebook type \"feed\" in my application. Like Whenever a user do some changes in his profile his linked profiles will get to know that in the form of news
I\'m using Java Google App Engine with Objectify3.0 (so some of the kinds may look different to standard JPO/JPA).
How does multi-tenancy with namespaces in app engine works? My application has multiple users and each users are sort of like tenants in multi-tenancy.
I have many custom object classes used by both a server (GAE) and client (Android) in a RESTful system. For ease of maintainability, the code 开发者_JS百科for these objects is common between server an