Apache Camel split JSONArray remove the double quote
问题 I've split the JSONArray using JsonPathExpression, but the result removed every double quote in each JSON, here is my RouteBuilder. from("timer:scheduler?repeatCount=1") .to("http:localhost:8901/rest/getData") .split(new JsonPathExpression("$.[*]")) .process(new Processor() { @java.lang.Override public void process(Exchange exchange) throws Exception { String input = exchange.getIn().getBody(String.class); exchange.getIn().setBody(input); } }) .unmarshal().json(JsonLibrary.Jackson, Map.class)