I'm searching a java rest framework or JAX-RS implementation that allows me to configure the dispatcher at runtime through an API. In JAX-RS it is only possible to do the configuration with @Path and @HttpMethod annotations or by effectively building your own dispatcher in a sub-resource.

I'm searching for:

dispatcher.addResource("/my/{path}", Resource.class) or
dispatcher.addResource("/2nd/path", resourceHandlerFactory)
link|improve this question

20% accept rate
I've got the information via mail that Jersey 2.0 might include this: java.net/jira/browse/JERSEY-842 – Thomas Koch Feb 6 at 17:55
you might want to read this stackoverflow.com/questions/1710199/… – koma Feb 7 at 13:32
feedback

2 Answers

up vote 1 down vote accepted

Unfortunately there is nothing in JAX-RS for dynamic resource specification as you've found. Apache Wink has another alternative to Restlet called DynamicResource http://incubator.apache.org/wink/1.1/html/5.1%20Registration%20and%20Configuration.html. I'd be quite interested in why you need dynamic resources as I had similar requirement.

link|improve this answer
Thank you for the link! I don't need dynamic resources. I just observed, that it is illogic to couple the resource method to the location of the resource. - It does not permit reuse of the resource method at another location. I'm writing my bachelor thesis about this, see the subchapter on dispatcher: github.com/thkoch2001/bachelor-thesis – Thomas Koch Feb 7 at 6:35
Exactly, that's why Restlet API's annotated resources don't allow fixing the location/path. This should indeed be an orthogonal aspect even though frequently a resource is only attached to one URI/path. – Jerome Louvel Feb 14 at 8:18
feedback

Try Restlet. It provides runtime dispatch functionality through its Router class. See http://wiki.restlet.org/docs_2.1/13-restlet/27-restlet/326-restlet.html for an example.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.