如何在Camel的HTTP URL中使用bean中的变量

时间:2016-05-25 22:37:56

标签: apache-camel enterprise-integration

我是骆驼新手,过去几天一直在使用它。

我想在bean中进行一些处理" retreiveDetails"然后使用变量" idValue"从那个bean" retreiveDetails"在路线的下一步,这是一个http网址。 Routebuilder类的一部分如下,

 .to("bean:retreiveDetails?method=process")
   .to("http://10.80.80.90:51555/patients?id=${idValue}")
    .to("bean:empiResults?method=process") 

如何设置" idValue"的值?在bean" retreiveDetails"?我如何在Routebuilder的路线中使用它?

1 个答案:

答案 0 :(得分:0)

请参阅此常见问题解答,了解如何使用动态值: http://camel.apache.org/how-to-use-a-dynamic-uri-in-to.html