如何用 mule 中的另一个值替换 xml 元素的数据?例如
<users>
<user>
<name>abc</name>
<city>qwe</city>
<countryCode>india</countryCode>
</user>
<user>
<name>yiu</name>
<city>cdc</city>
<countryCode>france</countryCode>
</user>
<user>
<name>wddq</name>
<city>dqdqw</city>
<countryCode>brazil</countryCode>
</user>
我想将countryCode
VALUES 替换为预定义的值,比如我想 IN 代表印度,BA 代表巴西,FC 代表法国。
在骡子中最好的方法应该是什么。现在我正在尝试使用属性文件中的这些值。