Start networking and exchanging professional insights

Register now or log in to join your professional community.

Follow

How to receive and iterate the Java POJO object as a request from client to RESTful Web Service which developed in Spring MVC?

user-image
Question added by Deleted user
Date Posted: 2014/08/28
Majid Hameed
by Majid Hameed , Senior Java Developer , Check24 Vergleichsportal GmbH

Serialization/De-Serialization

On client side you need to serialize your Java Object into some format like XML or JSON.

On server side you need to de-serialize the request data from XML/JSON or any other format back to your Java Object.

JSON is performance wise efficient as compared to XML.

More Questions Like This