我正在尝试将我的 CXF RESTful Web 服务与 Apache Camel 集成。要求是当有人点击我的网络服务时,我获取请求参数并连接到谷歌或某些服务提供商以使用请求参数搜索结果。假设我的网络服务是 foo:bar 并且我想在这个 foo:bar 被命中后连接到谷歌。这意味着我的骆驼路线将是这样的:
<camelContext>
<route>
<to uri:"cxf://bean://foo:bar/>
<from uri="http://www.google.com"/>
</route>
</camelContext>
is this understanding correct..
i am pasting a section of my config xml for review ..
<jaxrs:server id="restContainer" address="/" staticSubresourceResolution="true">
<jaxrs:serviceBeans>
<ref bean="FooBar" />
</jaxrs:serviceBeans>
<jaxrs:providers>
<bean class="org.apache.cxf.jaxrs.provider.JSONProvider">
<property name="dropRootElement" value="true" />
<property name="supportUnwrapped" value="true" />
</jaxrs:providers>
<camelcxf:rsServer id="rsServer"
// this is the rest uri which is mapped to my resource class address="http://localhost:port/MyApplication/rest/foobar serviceClass="com.camel.example.FooBar" />
<camel:camelContext id="camelContext-1">
<camel:route>
<camel:from uri="cxfrs:bean:rsServer" />
<camel:to uri="http://www.google.com" />
</camel:route>
</camel:camelContext>
除此之外,当我运行我的 web 服务时,我得到以下异常: java.lang.ClassNotFoundException: org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java 的 org.eclipse.jetty.util.component.Container$Listener :1666) at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1511) at java.lang.ClassLoader.loadClassInternal(Unknown Source) ... 58 更多 我不明白为什么我得到这个,因为我是使用tomcat进行部署。