> CXF JAXRS front end implements the JAXRS(JSR311) API, so we can export the > resources classes as a REST service. And we leverage the CXF Invoker API to > turn a REST request into a normal Java object method invocation. > Unlike the camel-restlet, you don't need to specify the URI template within > your restlet endpoint, CXF take care of the REST request URI to resource > class method mapping according to the JSR311 specification.
I am not clear how to get the request object from the exchange. Could you clarify it? > All you need to do in Camel is delegate this method request to a right > processor or > endpoint. The processor/endpoint that I delegated to may need to know "metadata" (such as verb, path, URI templates parameters, media type, etc). Are these information available in the exchange? Thanks.