Here is my Java code which is used for the de-serialization, i am trying to convert json string into java object. In doing so i have used the following code:
JsonNode node = mapper.readValue("[{\"id\":\"value11\",\"name\": \"value12\",\"qty\":\"value13\"}," System.out.println("id : "+node.findValues("id").get(0).asText());
this also done the trick.