Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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:

  • RoR ActiveRecord
  • .NET Castle ActiveRecord

Anyone?

like image 730
Paulo Lopes Avatar asked Feb 14 '09 10:02

Paulo Lopes


2 Answers

I released this ActiveJDBC project: http://javalite.io/activejdbc

This is an implementation of ActiveRecord in Java

like image 168
ipolevoy Avatar answered Sep 22 '22 11:09

ipolevoy


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

like image 41
Paulo Lopes Avatar answered Sep 24 '22 11:09

Paulo Lopes