Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JsonCBR (Json Content Based Routing) is used to route the incoming messages on to onto different destinations based on the content of the messages. The component creates a port for each of the JsonPath expressions specified and the messages satisfying the particular JsonPath expression is sent onto the respective port. In addition to these ports, an output port OUT_FALSE is created and messages whose content does not satisfy any of the JsonPath expressions will be sent out of this port. If more than one JsonPath expression is true, the message is sent on all the ports for which the JsonPath expression evaluates to true.

Info

A Json expression is a combination of a JsonPath, operator, and a value (if needed).

Anchor
Configuration and Testing
Configuration and Testing
Configuration and Testing

The JsonCBR component can be configured using its Custom Property Sheet (CPS) wizard.


Figure 1: JsonPath(s) to be evaluated on the input messages

JsonPath

JsonPaths, based on which the routing is done, can be configured in JsonCBR Configuration Page. A valid JsonPath expression can be typed directly in into the table.

An empty row is automatically added after pressing Enter key after the JsonPath is manually provided.

 For For each configured JsonPath expression, an output port is created with the name provided in Port Name column, messages satisfying the given Json Objects condition are routed onto this port. Port names ON_EXCEPTION and OUT_FALSE  are reserved and cannot be set in Port Name column.

  • JsonPath contains the path of any element, then JsonCBR checks for the existence of the particular element in the input Json Object. If the input JsonObject contains the element then it will be routed to the corresponding output port of that JsonPath, if the input JsonObject does not contain the element then it will be routed to the output port OUT_FALSE. Json values which are  passsed passed in input Json object  should should only be any of these types: Long, Integer, Double, String, Boolean, BigInteger, BigDecimal, or another JsonPath.
Comparison of the JSONPath syntax elements with its XPath counterparts

...

XPathJSONPathDescription
/$the root object/element
..n/aparent operator
//.. recursive descent. JSONPath borrows this syntax from E4X.
**wildcard. All objects/elements regardless their names.
@n/aattribute access. JSON structures don't have attributes.
[][]subscript operator. XPath uses it to iterate over element collections and for predicates. In Javascript and JSON it is the native array operator.
|[,]Union operator in XPath results in a combination of node sets. JSONPath allows alternate names or array indices as a set.
n/a[start:end:step]array slice operator borrowed from ES4.
[]?()applies a filter (script) expression.
n/a()script expression, using the underlying script engine.
()n/agrouping in Xpath

...

This field includes boolean operators like ==!=, <, >, <=, >=, EXISTS, NONEXISTENT.

  • The EXISTS operator return returns true if the given JsonPath JsonPath element exists in the input Json.
  • While NONEXISTENT operator returns true when the given JsonPath JsonPath element is nonexistent in the input Json

Value

This field includes can be any of these types: Long, Integer, Double, String, Boolean, BigInteger, BigDecimal, and JsonPath. If a "$" precedes any value, then it is treated as a JsonPath. In this case the , values of the two JsonPaths are compared for evaluating the expression.

...

JsonCBR is configured to filter the messages on the basis of book price in the input message. It is sent to one of the output ports depending on the JsonPath specified in the  JsonCBR JsonCBR CPS.

Configure the JsonCBR as described in Configuration and Testing section and use feeder and display component to send sample input and check the response respectively. 


Figure2: Demonstrating the Scenario with sample input and output

Sample Input

Code Block
{ "store": {
"book": [ 
{ "category": "reference",
"author": "Nigel Rees",
"title": "My Radio Times",
"price": 8.95
},
{ "category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{ "category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{ "category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
}
       }

...

JsonOutput5:  As $.store.book[0].price is 8.95 which is less than 18.4, hence the following output is displayed.

Code Block
titleJsonOutput5
{ "store": {
"book": [ 
{ "category": "reference",
"author": "Nigel Rees",
"title": "My Radio Times",
"price": 8.95
},
{ "category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{ "category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{ "category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
}
       }


JsonOuptput4JsonOutput4As $.store.book[1].title is "Sword of Honour", which is not equals equal to "abc", hence the following output is displayed.

Code Block
titleJsonOutput4
{ "store": {
"book": [ 
{ "category": "reference",
"author": "Nigel Rees",
"title": "My Radio Times",
"price": 8.95
},
{ "category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{ "category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{ "category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
}
       }


JsonOuptput3JsonOutput3As $.store.book[2].category is "fiction", which is equal to $.store.book[1].category, hence the following output is displayed.

Code Block
titleJsonOutput3
{ "store": {
"book": [ 
{ "category": "reference",
"author": "Nigel Rees",
"title": "My Radio Times",
"price": 8.95
},
{ "category": "fiction",
"author": "Evelyn Waugh",
"title": "Sword of Honour",
"price": 12.99
},
{ "category": "fiction",
"author": "Herman Melville",
"title": "Moby Dick",
"isbn": "0-553-21311-3",
"price": 8.99
},
{ "category": "fiction",
"author": "J. R. R. Tolkien",
"title": "The Lord of the Rings",
"isbn": "0-395-19395-8",
"price": 22.99
}
],
"bicycle": {
"color": "red",
"price": 19.95
}
}
       }

JsonOuptput2JsonOutput4As $.store.book[0].isbn does not exist, hence no output is displayed.

JsonOuptput1JsonOutput5As some Json expressions were evaluated as 'true so ', the OUT_FALSE _PORT gets no output, hence no output is displayed.

 Error: The errors that were generated while evaluating the Json expression are displayed here like- invalid json format etc.

Adaptavist ThemeBuilder EngineAtlassian Confluence