I have a string like this (which looks like a map)
{key1=value1;key2=value2;key3=value3;...keyn=valuen;}
which I want to either convert to a java object or as a JSON payload like this:
{"key1" : "value1","key2" : "value2","key3" : "value3",..."keyn" : "valuen"}
Is there a mule way to do it ? I am trying to avoid writing a custom java class for this problem. Something which data weave can help?