java - GAE High Replication Datastore in Android Studio -


i want store data in gae high replication datastore. added servlet module , deployed app engine project.

how can store data ?

i tried stuff this: {

datastoreservice datastore = datastoreservicefactory.getdatastoreservice(); entity entity = new entity("person",name); entity.setproperty("name",name); entity.setproperty("age",age); datastore.put(entity); 

} in doget-method of servlet , launched no entities showed in datastoreviewer.


Comments

Popular posts from this blog

twig - Using Twigbridge in a Laravel 5.1 Package -

jdbc - Not able to establish database connection in eclipse -

Kivy: Swiping (Carousel & ScreenManager) -