Can Objectify be used outside of GAE?

I want to use Google Cloud Datastore. However, I am not using GAE.

Can I use the Objectify library? If so, how? The documentation doesn't say anything about how to set it up for data store authentication.

+3


source to share


2 answers


No, you cannot.



Here is a comment from the creator on the topic.

+2


source


Objectify is for GAE use only. Other Java ORMs that can interoperate with the Datastore like JDO, JPA, etc. are similar.



To access your data store from the outside world, you will either want to write handlers in your GAE API that can use the Datastore interface for you, simply by pushing those methods on your API that make sense in the context of your application, or you will use the Google Cloud Datastore API Client Library for Java , allowing an external application to directly touch your data store.

0


source







All Articles