消息丰富器和变量

发布于 2024-12-15 03:04:41 字数 278 浏览 0 评论 0原文

我很难从文档中实现某些内容。

我想做的是用一个简单的 int 来丰富当前的有效负载。

我可以通过丰富语法静态地执行此操作还是必须创建一个出站请求-reponse 端点只是为了那个愚蠢的事情?

,我正在寻找一个单独的东西:

 <enricher target="#[variable:age]" source="SomeStringIwant"/>

这显然行不通,有什么方法可以让它轻松工作吗?

例如

I"m having a hard time realizing something from the documentation.

What i'd like to do is to to enrich the current payload with a simple int.

Could i do that staticly from the enricher syntax or would i have to create an outbound request-reaponse endpoint just for that silly thing?

For example, i am looking for the somethinga lone the lines of:

 <enricher target="#[variable:age]" source="SomeStringIwant"/>

That obviously would not work, is there some way to get it to work easily?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陌上芳菲 2024-12-22 03:04:41

我将使用 脚本转换器 为此:

<script:transformer>
    <script:script engine="groovy">
        <script:text>
            payload.age = message.getInboundProperty('ageProperty')
            return payload
        </script:text>
    </script:script>
</script:transformer>

该脚本假设“ageProperty”位于入站范围内。如果没有,请使用正确范围的方法。

该脚本还依赖于绑定在 ScriptingModuleReference-ScriptContextBindings 中的两个隐式变量:脚本转换器的上下文:

I would use a script transformer for this:

<script:transformer>
    <script:script engine="groovy">
        <script:text>
            payload.age = message.getInboundProperty('ageProperty')
            return payload
        </script:text>
    </script:script>
</script:transformer>

This script assumes the 'ageProperty' is in the inbound scope. If not, use the method for the right scope.

This script also relies on two of the implicit variables bound in the context of a script transformer:

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