views:

292

answers:

1

Is there a Javascript library like DWR that can generate javascript stub for REST api. We are using Jersey/JSR-311 for REST on server and was wondering that instead of using libraries like Jquery or dojo if there is a library that can take a Rest class annotated using JSR311 annotations and create javascript stub like DWR does?

A: 

I am about to commit such a thing for RESTEasy, the JBoss implementation of JAX-RS. You can expect it within a month. It might even become portable and work for Jersey if there is traction.

FroMage