I want to create a simple Spring project that will serve as a RESTful service.
I want to send JSON from frontend and want to convert it to a Java object using @RequestBody
. After modifying the object in the backend, I need to convert that object back to JSON and send to front end.
How can I achieve this?