Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any ActiveResource like library for Java? [closed]

I know there are some ActiveResource Client libraries for Java, like RAPA and JactiveResource

The question is: is there any easy way to create the Server Side of ActiveResource in Java?

In RubyOnRails all you need to do is to use the Inherited Resources gem. Is there any similar thing in Java?

like image 630
Daniel Cukier Avatar asked Jul 17 '11 22:07

Daniel Cukier


1 Answers

I don't know if there is a specific library for creating RESTful webservices that implements what you need, I'm no ruby expert but it seems that active resource is something like active record but over REST, what I'd suggest you to do is use Jersey and ActiveJDBC together and maybe you'll get the flavor of it. If it's generic enough you can even make a framework out of it.

Jersey Home Page

AcrtiveJDBC Page

Hope it helps!

like image 188
Juan Alberto López Cavallotti Avatar answered Sep 23 '22 04:09

Juan Alberto López Cavallotti