如何将交易添加到收件人列表?

发布于 2024-12-21 09:59:18 字数 570 浏览 1 评论 0原文

我能够根据消息内容发送到动态 URI 列表。我有代码将目的地的 URI 放置在“destination”的标头键中。可以假设返回的 URI 是 JMS URI。

JMS URI 的示例为“jms://jmsEndpoint/queue:outbound_queue?connector=jmsConnector”

如何将事务添加到收件人列表?

<flow name="Flow_Name">
    <jms:inbound-endpoint queue="inbound_queue">
        <jms:transaction action="ALWAYS_BEGIN" />
    </jms:inbound-endpoint>

    <!-- Code that adds a list of URI's to the header key of 'destination' -->

    <recipient-list expression="destination" evaluator="header" />
</flow>

I am able to send to a list of dynamic URI's based off of the message's contents. I have the code place the URI of the destinations in the header key of 'destination. It can be assumed that the URI coming back is a JMS URI.

An example of the JMS URI is "jms://jmsEndpoint/queue:outbound_queue?connector=jmsConnector"

How do I add transactions to a recipient-list?

<flow name="Flow_Name">
    <jms:inbound-endpoint queue="inbound_queue">
        <jms:transaction action="ALWAYS_BEGIN" />
    </jms:inbound-endpoint>

    <!-- Code that adds a list of URI's to the header key of 'destination' -->

    <recipient-list expression="destination" evaluator="header" />
</flow>

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

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

发布评论

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

评论(1

放低过去 2024-12-28 09:59:18

该文档明确指出

您可以使用收件人列表路由器发送多条消息,这将在同一事务中发送所有消息。

但 XML 模式不允许您为路由器指定事务配置。我已经检查了 org.mule.routing.outbound.ExpressionRecipientList 的源代码,它应该很好地支持异常。

所以我的印象是,这是 XML 模式的缺失。我可能是错的,但我认为值得打开 JIRA 并看看核心开发人员对这个问题的看法。

The doc clearly states:

You can send multiple messages using the recipient list router, which will send all messages in the same transaction.

But the XML schema doesn't allow you to specify a transaction configuration for the router. I've checked the source code of org.mule.routing.outbound.ExpressionRecipientList and it should support exceptions just fine.

So my impression is that this is a lack in the XML schema. I may be wrong but I think it's worth opening a JIRA and see what the core devs think of the issue.

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