JPOX JDO and Castor JDO compared to Hibernate persistence

915 views Asked by At

Do these frameworks (JPOX JDO and Cater JDO) work off similar principles as Hibernate? Do they use configuration data plus a combination of reflection and generics? What are some of the major architectural differences?

1

There are 1 answers

0
DataNucleus On

Castor JDO is not "JDO" (Java Data Objects). It still performs persistence but not to any "standard" so is misleading in naming and they know it. JPOX implements JDO and JPA standards for persistence. DataNucleus replaced JPOX some time ago and is the persistence solution adopted by Google AppEngine. DataNucleus allows JDO/JPA annotations/XML and support generics. Hibernate is an implementation of JPA

--Andy (DataNucleus)