Skip to content

Instantly share code, notes, and snippets.

@wulfgarpro
Created September 15, 2011 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wulfgarpro/1220791 to your computer and use it in GitHub Desktop.
Save wulfgarpro/1220791 to your computer and use it in GitHub Desktop.
Using Jackson's TreeModel to parse types from JSON
ObjectMapper mapper = new ObjectMapper();
JsonNode rootNode = mapper.readValue(compoundCriteria,
JsonNode.class);
if(rootNode.has("ContextualCriteria"))
{
JsonNode contextualNode = rootNode.get("ContextualCriteria");
ContextualCriteria contextualCriteria = (ContextualCriteria)
fromJson(contextualNode.toString(),
ContextualCriteria.class);
query.addCriteria(contextualCriteria);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment