我在OSGi
上部署了Apache Karaf
个捆绑包。我有一条简单的骆驼路线:
<camelContext trace="true" xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="jetty:http://0.0.0.0:8282/services?handlers=securityHandler&matchOnUriPrefix=true"/>
<setHeader headerName="CamelHttpQuery">
<constant>wt=xml&rows=1000000&fl=nid,title&fq=sm_vid_Third_parties_with_which_this_organisation_s_content_can_be_shared:%22Indeed%22</constant>
</setHeader>
<to uri="http://172.28.128.158:8983/solr/targetjobs.co.uk.gtimedia.test/select/?"/>
<!-- <split>
<xpath>//int[@name='nid']</xpath>
</split>-->
<convertBodyTo type="java.lang.String" />
</route>
</camelContext>
我无法让它发挥作用。当我调用http://localhost:8282/services
时,它应该转到uri
下方指定的setHeader
。相反,我得到了这个例外:
java.lang.IllegalArgumentException:无效的uri:/ services。 如果要转发/桥接http端点,请启用bridgeEndpoint 端点上的选项: 端点[http://172.28.128.158:8983/solr/targetjobs.co.uk.gtimedia.test/select/]
它说我需要启用桥接端点,但这不是端点,它是我试图指向我的路径的绝对URL。
我尝试设置Spring
,如图here所示,但这也不起作用。我也试图改变这一点:
<to uri="http://172.28.128.158:8983/solr/targetjobs.co.uk.gtimedia.test/select/?"/>
到此:
<to uri="jetty//http://172.28.128.158:8983/solr/targetjobs.co.uk.gtimedia.test/select/?"/>
也没有成功。也许有人知道如何从jetty
uri
路由到绝对url
?
答案 0 :(得分:6)
你试过bridgeEndpoint
吗?如下所述:
http://camel.apache.org/how-to-use-camel-as-a-http-proxy-between-a-client-and-server.html
您的目标网址如下:
<to uri="jetty//http://172.28.128.158:8983/solr/targetjobs.co.uk.gtimedia.test/select?bridgeEndpoint=true&throwExceptionOnFailure=false"/>
答案 1 :(得分:0)
为我工作:
@Override
public void configure() throws Exception {
restConfiguration()
.host("localhost")
.component("jetty")
.port("8085");
rest("/api")
//NEW ROUTE
.get("/getResidences")
.produces("application/json")
//OLD ROUTE
.to("http://localhost:3000/api/residences?bridgeEndpoint=true&throwExceptionOnFailure=false");
}
请注意处于静止配置的.componet(“ jetty”)