How to send data in REST Api? How do you send a java object as a Json?
Anonym
Told them about different methods post , put , patch , formats of data we can send data , text, xml ,json , Headers like cookies , encoding type. To send java obj as json , I said I would take each property of the obj as a key al nd in the value send it's values. Employee.id :{ salary: employee.salary , address : employee.address } ....