Hi, Can you show us the code that you run to create those entities ? Because declaring an object to be a datastore entity via @Entitty annotation in your java source code is not enough to have some kind of structure declared in the datastore.
By the way, your won't ever have any structure visible per se: datastore (on top of which JP sits) is schema-less (in contrary to a rdbms) so you will have to change your mind if you come from rdbms world. No entity instance created -> nothing visible. Hope it helps regards didier On Dec 13, 7:20 am, Suresh Reddy <[email protected]> wrote: > Hi All, > > I'm trying to deploy sample application (using JPA) to GAE > My entities are marked with @Entity annotation (with some > properties) ... when I deploy this application to GAE, I could access > the static pages but, nothing related to entities/data is displayed. > When I look at the "Datastore Viewer" from Dashboard, I didn't fine any > entities related to my application. only _ah_Session entity is present > in the drop down. > > I was expecting entities to be created on deployment. Did I miss > anything? My application has about 10 entities. > > Thanks, > Suresh -- 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.
