ESB MULE passing the parameters to the java method
问题 I use MULE version 3.3.0 CE, I want to get some value from header in inbound and then pass it to a java method, in java method making some changes on passed value, finally again I pass it from java method to the outbound???? 回答1: Instead of tying your Java beans to the Mule API (with Callable ), you can do this using MEL only, for example with: <invoke object-ref="yourBean" method="yourMethod" methodArguments="#[message.inboundProperties['inboundPropertyName']]" /> <set-property propertyName=