I listed my classes and added the exclude-unlisted-classes and it worked. <class>at.hadoken.wizzywig.model.User</class> <exclude-unlisted-classes>true</exclude-unlisted-classes>
Also, someone e-mailed me with the same problem and found the solution. "HasDragHandle is the problem. I think that you have to put the gwt-dnd.jar into the war/WEB-INF/lib directory. I had the incubator jar in a separate lib directory and run into the same problems as you did." It all makes sense now! GWT doesn't need the classes in WEB-INF/lib, but datanucleus does. Good detective work! On Sep 3, 10:28 am, datanucleus <[email protected]> wrote: > > datanucleus says it can't find the Cow class. The class is in WEB-INF/ > > classes. But it looks like datanucleus' classloader is trying to load > > it, not sure why > > Since your persistence.xml doesn't tell it to restrict to specific > classes, so it searches through all packages from the root of the > persistence-unit, and finds it ? > > Put the Cow in a field on its own ? :-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine for Java" 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-java?hl=en -~----------~----~----~----~------~----~------~--~---
