Joe
Joe

Reputation: 15341

Can Hibernate be used as the JPA provider in Google App Engine

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)

Upvotes: 12

Views: 7789

Answers (4)

Yves_T
Yves_T

Reputation: 1170

Yes you can !

Please read this information.

Upvotes: 2

Taylor Leese
Taylor Leese

Reputation: 52320

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.

Upvotes: 16

Imaky
Imaky

Reputation: 1257

Yes,now, you can use hibernate with Google App Engine.

Upvotes: 5

gdt
gdt

Reputation: 1903

I appreciate that it's been some time since you asked, but things have changed recently; Google now offers a preview of a SQL interface. That means that any JDBC based solution should work (http://code.google.com/apis/sql/) - and that includes Hibernate.

Personally, I'll be cautious about using it until pricing is finalised, though.

Upvotes: 9

Related Questions