views:

490

answers:

2

Can Hibernate 3.5.x be used as the JPA provider instead of the default provider in the latest version of Google App Engine (1.3.2)

+5  A: 

No, Hibernate can't be used with Google App Engine. Please see Will it play with App Engine.

You cannot currently use Hibernate directly. The differences between the App Engine datastore and SQL were too great to get the standard Hibernate up and running under App Engine. App Engine does support JDO and JPA, so you may be able to convert your Hibernate code to use one of these ORM interfaces.

Taylor Leese
Assuming we convert Hibernate code over to JPA 2, would it be possible to use Hibernate as the underlying JPA provider or would the GAE platform default this to default data nucleus provider
Joshua
You need to use data nucleus.
Taylor Leese
A: 

check this if you have found a solution... http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine

diealive