我想向 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>
是否有可能做到这一点?如果是,如何实现这一目标?
提前致谢。