marshalling in java

Solutions on MaxInterview for marshalling in java by the best coders in the world

showing results for - "marshalling in java"
Manuela
13 Jul 2016
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)
Matthew
22 Mar 2018
1it is also known as Serialization; 
2when we MAP a Java object to API JSON
3format (CONVERT JAVA OBJECT TO JSON);
4
5
6on the other hand umharshalling also know as
7Deserialization;
8API JSON/XML ^ MAP it to Java Object
9(JSON TO JAVA OBJECT)