I have a com.fasterxml JsonNode object with some data. I need to do some manipulation on its data. I googled for answer but didn\'t got it properly. Can you please
com.fasterxml JsonNode
I try it some times, it will be ok! You only define a Student Class to map the properties. Then you could convert the jsonNode to Student Object.
Student Class
jsonNode
Student
Student student = objectMapper.convertValue(jsonNode1, Student.class);
I think this will be suitable for your need!