I have used JDO data storage with GAE and also stored that to MySql. Although changing the GAE libraries out for Mysql JDO Libraries takes a little bit of effort.
Here are some of my JDO classes, which I convert into DataObjects to pass to GWT client side. Its not to hard to write JDO into data objects you can pass to GWT client side, but does take a little bit of work. Once you get the hang of it, it goes pretty fast. http://code.google.com/p/gwt-examples/source/browse/#svn/trunk/Core/src/org/gonevertical/core/server/jdo/data - some of my JDO source Brandon Donnelson http://gwt-examples.googlecode.com On Apr 23, 4:18 am, jbdhl <[email protected]> wrote: > I use app engine's datastore with JDO, which is able to store classes > if they are "@PersistenceCapable". But annotations like > "@PersistenceCapable" is, as far as I understand, not available in GWT > (the client side), forcing me to re-implement the model classes > without the "@Persistent"-annotations for the client side. Is that > correct? Are there any short cuts I could take on that? > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" 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 > athttp://groups.google.com/group/google-web-toolkit?hl=en. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" 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-web-toolkit?hl=en.
