Can I use JPA 2.0(e.g EclipseLink) with Google App Engine?
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- __call__() missing 1 required positional argument:
- Upload file to Google Cloud Storage using AngularJ
- How does the JPA handle partial, non-disjoint inhe
- Where is the best place to put one-time and every-
相关文章
- Is there a size limit for HTTP response headers on
- appcfg.py command not found
- Google app engine datastore string encoding proble
- How to apply Static Weaving Ant Task with Eclipse-
- Angular route not working when used with Google Ap
- Doctrine not finding data on Google App Engine?
- Using OkHttp client via OKClient on Google App Eng
- Google appEngine: 404 when accessing /_ah/api [dup
No, you can't use any implementation on GAE and they only support JPA 1.0. Quoting Using JPA with App Engine:
"Experimental" support for JPA 2.0 is now available in GAE.
You can find out how to set it up here.
Now, in version 1.7.1 of GAE SDK you can use JPA 2 or JDO 3, fully supported. See release notes. Or set up using this information.
The DataNucleus plugin to the Google AppEngine supports both the JDO and JPA API to access Google AppEngine Datastore infrastructure. Currently this implementation seems to support JPA1 only.