[
https://issues.apache.org/jira/browse/CAMEL-20495?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17822664#comment-17822664
]
Rhuan Rocha commented on CAMEL-20495:
-------------------------------------
Hi [~davsclaus] ,
I added some scenarios used by us and it worked within the unit test. I added
more 2 tests in my local environment.
{code:java}
from("direct:start2")
// we select first book, but since we split after wards then ensure
// it will be wrapped inside a List object.
.split().jsonpath("$.store.book", List.class)
.to("mock:authors2")
.convertBodyTo(String.class);
from("direct:start3")
// we select first book, but since we split after wards then ensure
// it will be wrapped inside a List object.
.split().jsonpath("$.store.book[*]", List.class)
.to("mock:authors3")
.convertBodyTo(String.class); {code}
I think we can add those tests on the unit test
> Allow enable/disable Split EIP split a Map out of the box
> ---------------------------------------------------------
>
> Key: CAMEL-20495
> URL: https://issues.apache.org/jira/browse/CAMEL-20495
> Project: Camel
> Issue Type: Improvement
> Components: came-core
> Reporter: Rhuan Rocha
> Priority: Major
> Fix For: 4.5.0
>
>
> We are supporting the Split EIP splitting a map out of the box from Camel
> 3.13.0 https://issues.apache.org/jira/browse/CAMEL-17101. However, it changes
> the behavior when using jsonpath, as the jsonpath always evaluates the
> message to Map.
> {code:java}
> // code placeholder
> from("direct:start")
> .split().jsonpath("$.store.books")
> .to("log:book", "mock:result"); {code}
> My suggestion is to allow enable and disable this behavior. Look at this
> example
> {code:java}
> // code placeholder
> from("direct:start")
> .split()
> .splitMapEntry(true)
> .jsonpath("$.store.books")
> .to("log:book", "mock:result"); {code}
>
> Let me know if it makes sense. If so, I can get this issue and send a PR.
>
>
--
This message was sent by Atlassian Jira
(v8.20.10#820010)