Hey
I have been using JDO as a mechanism to persist data and it's worked
well; however, having looked at the low-level API it looks rather
straightforward so I'd like to switch to using that. One question I do
have is, with JDO you annotate your persistent classes with
@Persistent etc. So far the only tutorials I have found show entities
being created manually I.e.
Entity alice = new Entity("Alice", "Person");
alice.setProperty("gender", "female");
alice.setProperty("age", 20);
Is there a way to annotate your classes using the low level API - or
at the very least create entities in a nicer, more standard way?
Thanks in advance!
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.