views:

325

answers:

1

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?

+2  A: 

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)

DataNucleus