Search code examples
javaopen-sourceactiverecord

Is there an implementation of the ActiveRecord pattern in Java like the one from Ruby?


I'd like to have a ActiveRecord implementation in Java and before crafting my own, I'd like to know if there is an open source implementation of it.

I am aware of other successful java OR maping tools like Hibernate, Castor, etc... and that is not what i want, i want a ActiveRecord like in RoR:

Anyone?


Solution

  • After "Googling" for a answer I've found the project arjava. It implements the Active Record pattern kind of similar to the Ruby way.