what is marshalling and unmarshalling in java

Solutions on MaxInterview for what is marshalling and unmarshalling in java by the best coders in the world

showing results for - "what is marshalling and unmarshalling in java"
Antonio
12 May 2018
1Marshalling; when we MAP a Java object to API JSON
2format (CONVERT JAVA OBJECT TO JSON);
3
4Unmarshalling; API JSON/XML ^ MAP it to Java Object
5(JSON TO JAVA OBJECT)
Emanuele
12 Oct 2019
1 umharshalling also know as
2Deserialization;
3API JSON/XML ^ MAP it to Java Object
4(JSON TO JAVA OBJECT)