Requirement is like that a json object is send from postman and i need to receive it on a restcontroller and save that whole json object as it is to the mysql database Table Column(in one/single column) using spring boot.
{
"name" : "abc",
"address : "xyz"
}
assume the above json object is send from postman to a spring boot restcontroller. How can i save that json object in a column of a table .