我有一个使用 JMS 消息和 Java 组件来处理批处理的 mule 流。完成工作后,我需要发送电子邮件通知用户此过程的结果。我目前正在一个 Java 组件中处理所有这些、处理和电子邮件发送。我想解耦电子邮件发送操作,以便在其他流程中重用此组件,而不是将代码从 Java 组件复制/粘贴/调整到其他组件。我的问题是我想发送到这个组件的有效负载是Map<String, Object>
在流接收Serializable
参数时(在这种情况下,是一个扩展的自定义类Serializable
)。如何在从 Java 组件发送之前更改有效负载,Map<String, Object>
在调用电子邮件组件之前我知道要在其中设置的参数?
目前这就是我所拥有的:
<flow name="SomeBatchProcessFlow">
<jms:inbound-endpoint queue="${some.batch.process}"
connector-ref="JmsConnectorRef" />
<component>
<method-entry-point-resolver>
<include-entry-point method="foo" />
</method-entry-point-resolver>
<spring-object bean="someBatchProcessComponent" />
</component>
<!--
what to put here to change the payload for the Map<String, Object> I've prepared
in SomeBatchProcessComponent#foo method?
-->
<jms:outbound-endpoint address="jms://${queues.emailSend}"
connector-ref="JmsConnectorRef" />
</flow>
<flow name="EmailSendFlow">
<jms:inbound-endpoint queue="${queues.emailSend}"
connector-ref="JmsConnectorRef" />
<component>
<method-entry-point-resolver>
<include-entry-point method="sendEmail" />
</method-entry-point-resolver>
<spring-object bean="emailSenderComponent" />
</component>
</flow>
我知道我可以手动发送 JMS 消息,SomeBatchProcessComponent#foo
但我更希望 mule 处理这项工作以保持其解耦。