-
Bug
-
Resolution: Done
-
Blocker
-
camel-quarkus-2.2-GA
-
False
-
False
-
%
-
CQ4
-
+
-
Automated
-
-
Following route
from("direct:body-as-string") .split().jsonpathWriteAsString("$.testjson.users") .log("Body is: ${body}");
has following output on JVM:
Body is: {"name":"Jan","age":28} Body is: {"age":10} Body is: {"name":"Tom","age":50}
Whereas in native the output is following:
Body is: {name=Jan, age=28} Body is: {age=10} Body is: {name=Tom, age=50}
Is this just a formatting issue (maybe something similar to locales with native) or could it point to different behavior on JVM vs Native?