我试图在 mule 中创建一个 Data-Mapper 示例,其中入站和出站端点都是文件,看起来有点像。
当我执行此程序时,文件的输出文件夹仍然为空,逻辑上我假设我需要在数据映射器和输出文件之间放置和 HashMap 到 XML 转换器。更多我从数据映射器中的示例选项中创建了一个 csv 文件到 xml 文件。最初我尝试使用 FTP 端点,它开始导致错误,所以我用文件端点替换了 FTP。
我在这里共享 configuration.xml 文件
<mule xmlns:file="....>
<data-mapper:config name="sample_mapper_grf" transformationGraphPath="sample_mapper.grf" doc:name="DataMapper"/>
<flow name="CSV_to_XML_Data_MapperFlow1" doc:name="CSV_to_XML_Data_MapperFlow1">
<file:inbound-endpoint path="/home/jay/CSV_XML_/input" responseTimeout="10000" doc:name="Input File"/>
<data-mapper:transform config-ref="sample_mapper_grf" doc:name="DataMapper"/>
<file:outbound-endpoint path="/home/jay/CSV_XML_/output/" responseTimeout="10000" doc:name="Output File"/>
</flow>
</mule>
数据映射器配置图像在这里