apache-camel uri 中的简单表达式

发布于 2024-12-14 02:34:37 字数 185 浏览 0 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

故人爱我别走 2024-12-21 02:34:38

伯恩哈德

http://camel.apache.org/ how-do-i-use-dynamic-uri-in-to.html

使用收件人列表 EIP 模式,该模式允许您使用表达式计算动态 URI。
例如使用如下所示的简单表达式语言:

recipientList(simple("freemarker://templateHome/${body.templateName}.ftl"))

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:

recipientList(simple("freemarker://templateHome/${body.templateName}.ftl"))
总以为 2024-12-21 02:34:38

另一种方法是在标头中使用“CamelXsltResourceUri”属性。

.setHeader("CamelXsltResourceUri",simple("xslt:<path>/<to>/<template>"))

“recipientList(简单(“freemarker://templateHome/${body.templateName}.ftl”))”

所选答案对我不起作用,因为我必须使用自定义 uriresolver

Another way is to use the "CamelXsltResourceUri" property in the header.

.setHeader("CamelXsltResourceUri",simple("xslt:<path>/<to>/<template>"))

"recipientList(simple("freemarker://templateHome/${body.templateName}.ftl"))"

The selected answer did not work for me since I had to use a custom uriresolver

故事灯 2024-12-21 02:34:38

使用toD()然后可以使用动态uri。收件人列表适用于多个目的地,而不是正确的 EIP。

但是,您可能需要避免使用 simple() 表达式创建太多不同的 URL。请参阅:https://camel.apache.org/components/ 3.18.x/eips/toD-eip.html

Use 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文