I have my JSON data stored in JsonNode. Which is the most efficient way to search for a field in this JsonNode?
- JsonNode.findValue() or I should use Jsonpath .read()
- Is JsonNode.findValue() internally de marshalling JSON to POJOs for finding specified value.
Which way is better. Please help.