I have the following json file
{
"name":"john",
"address":"abcd",
"ID":"xyz",
"time":"2016-12-22"
}
I want to send it from mock:a to mock:b only if ID = xyz in that jsonpath How is it done in camel ?
from("mock:a").choice().when().jsonpath("ID == xyz").to("mock:b") ?
How is the jsonpath part written ?
Looks like I found it -
but the trick was to add the following dependency -