我目前正在使用HTTP方法来调用一些会创建JIRA问题的URL.
现在我想使用Apache Camel,我该怎么用?
http://localhost:8080/rest/api/2/project/" + key + /components
在我刚刚接触骆驼时,请提出一些解决方案和例子.
谢谢
解决方法
您可以轻松使用
CXFRS Component;如果您需要使用
HTTP Component,因为某些原因,您可以很容易地使用它:
<setHeader headerName="CamelHttpUri"> <simple>http://localhost:8080/rest/api/2/project/${header.myKey}/components</simple> </setHeader> <inOut uri="http://doesnt.matter.we/override/it/anyways" />
当然,您需要使用myKey标题来丰富您的消息,才能进入路由的这一部分.