0

我想向 mule 流添加一些自定义元素,如下所示:

<?xml version="1.0" encoding="UTF-8"?>
<mule xmlns="http://www.mulesoft.org/schema/mule/core"
xmlns:custom="http://www.example.com/schema/custom"
xsi:schemaLocation="
      http://www.example.com/schema/custom file:/example/schema/custom.xsd">

<flow name="myFlow">
    <custom:template name="generic-xml" type="flow"/>
    <custom:template name="file" type="message-source"/>
</flow>
</mule>

是否有可能做到这一点?如果是,如何实现这一目标?

提前致谢。

4

2 回答 2

3

为 Mule 配置创建自定义元素(消息源和处理器)的最简单方法是使用DevKit

不要被 DevKit 附带的云连接器营销术语所迷惑:它可以让您做的不仅仅是连接到云!

于 2012-05-21T16:29:31.107 回答
1

您可以实现MessageProcessor接口并使用自定义处理器或处理器调用它:

或者,您也可以使用DevKit编写自己的模块。

于 2012-05-21T16:31:19.677 回答