I have a database that I have implemented Hibernate integration with. I was wondering what is the best library to use to add a RESTful interface to it?
My plan is to have the user submit their login information. After they are logged into this server I can answer REST calls from them. I will need the ability filter their requests by their user privileges. (In other words, look at their login privileges, and filter out data they shouldn't see and disallow them from changing data they should not be allowed to change).
I figure this can new project that simply takes some code out of my existing codebase. So it can be a standalone server. I am very open to using a lot of new and exciting technologies.
Any suggestions?
I would guess RestEasy, Hibernate, and JBoss server all work well together because they are all Jboss products. Is this correct or is there an easier/better way to do it?