Tutorials, Solution, Best Practices Everything You Need About Java From Beginner to Pro

Showing posts with label json. Show all posts
Showing posts with label json. Show all posts

Wednesday, April 3, 2019

Part II : Jackson Mix-ins, De/serializing third party objects with better control


Hello Friends, Welcome to my blog. Today in this blog we will be talking on Jackson Mix-ins feature, which allows us to have better control over the serialization of third party classes in which we cannot add our Jackson annotations. Let's look at below example, Here we are using the Exception class from the java.lang package and we wanted to use this class to represent error object in our...

Friday, March 29, 2019

Part I : Understanding basics of Fasterxml Jackson


Hello, friends today in this blog we will be learning about the JSON processing in java using "Fasterxml Jackson Library". This library can handle many JSON processing operation like add a node, update the existing node, delete the node from JSON. Serialize java object to JSON and Deserialize back to Java Objects. We will be covering below things in this tutorial Add, Update, Delete Node from...