apache-camel uri 中的简单表达式
我是 apache-camel 的新手,知道我遇到了问题。 我想在 uri 定义中使用简单的表达式,但我不知道如何操作。
例如:
from("foo://bar").to("foo://bar?var=${header.varName}");
有没有办法使用这样的表达式?
I'm new to apache-camel and know i met a problem.
I want to use simple expressions in my uri definition, but i don't know how.
For example:
from("foo://bar").to("foo://bar?var=${header.varName}");
Is there a way to use such expressions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
伯恩哈德
http://camel.apache.org/ how-do-i-use-dynamic-uri-in-to.html
使用收件人列表 EIP 模式,该模式允许您使用表达式计算动态 URI。
例如使用如下所示的简单表达式语言:
Bernhard
http://camel.apache.org/how-do-i-use-dynamic-uri-in-to.html
Use the Recipient List EIP pattern, which allows you to compute the dynamic URI using an Expression.
For example using the Simple expression language as shown below:
另一种方法是在标头中使用“CamelXsltResourceUri”属性。
所选答案对我不起作用,因为我必须使用自定义 uriresolver
Another way is to use the "CamelXsltResourceUri" property in the header.
The selected answer did not work for me since I had to use a custom uriresolver
使用
toD()
然后可以使用动态uri。收件人列表适用于多个目的地,而不是正确的 EIP。但是,您可能需要避免使用
simple()
表达式创建太多不同的 URL。请参阅:https://camel.apache.org/components/ 3.18.x/eips/toD-eip.htmlUse
toD()
then dynamic uri can be used. recipientlist is for multiple destinations, not the correct EIP.However you may need to avoid creating too many different URLs with your
simple()
expression. See: https://camel.apache.org/components/3.18.x/eips/toD-eip.html