在Web容器下公开作为REST服务的Camel路由

| 我有Camel路线,我想将其作为REST Web服务公开。应用程序部署在Web容器(Jetty / Tomcat)上,Spring也用于DI和其他“基础设施”。 我查看了
camel-restlet
camel-cxfrs
这两个组件,尽管它们都提供了将路由公开为REST服务的支持,但我无法找出如何避免启动单独的服务器的方法。我真正想要的是能够以与为Spring-WS入站端点定义路由的方式类似的方式定义骆驼路由,例如
from(\"restlet://application/user/{id}\").to(...)
Web应用程序的配置应注意接受请求并将其传输到适当的端点。 必须承认,我无法找到关于该主题的足够信息,而且我认为我的要求不是很奇特,这让我感到非常惊讶。     
已邀请:
看这个例子 http://camel.apache.org/cxf-tomcat-example.html 对于Apache CXF,您可以使用servlet传输,它允许您使用Tomcat / Jetty作为宿主容器。 如果您使用OSGi,请查看以下内容: http://camel.apache.org/cxf-example-osgi.html 它显示了如何将CXF与OSGi HTTP服务一起使用,这对于CXFRS也应适用。     
这是一个较晚的答案,但可能会帮助其他人。 现在,Apache Camel似乎支持使用主机容器(例如Tomcat / Jetty)公开Restlet Web服务。 ============== 8
<camelContext>
  <route id=\"RS_RestletDemo\">
    <from uri=\"restlet:/demo/{id}\" />
    <transform>
      <simple>Request type : ${header.CamelHttpMethod} and ID : ${header.id}</simple>
    </transform>
  </route> 
</camelContext>



<bean id=\"RestletComponent\" class=\"org.restlet.Component\" />

<bean id=\"RestletComponentService\" class=\"org.apache.camel.component.restlet.RestletComponent\">
  <constructor-arg index=\"0\">
    <ref bean=\"RestletComponent\" />
  </constructor-arg>
</bean>
And add this to your web.xml;
<!-- Restlet Servlet -->
<servlet>
  <servlet-name>RestletServlet</servlet-name>
  <servlet-class>org.restlet.ext.spring.SpringServerServlet</servlet-class>
  <init-param>
    <param-name>org.restlet.component</param-name>
    <param-value>RestletComponent</param-value>
  </init-param>
</servlet>

<servlet-mapping>
  <servlet-name>RestletServlet</servlet-name>
  <url-pattern>/rs/*</url-pattern>
</servlet-mapping>
然后,您将可以在以下位置访问已部署的路由
http://localhost:8080/mywebapp/rs/demo/1234

where localhost:8080 is the server and port of your servlet container
============= snip snip> 8 =========================== 该信息位于2014年1月16日的http://camel.apache.org/restlet.html底部     

要回复问题请先登录注册