Как прочитать тело ответа API, возвращенное Spring MVC? - PullRequest
0 голосов
/ 14 февраля 2019
@PostMapping("/retrieve")
@Timed

public ResponseEntity<String> updateColumn(@RequestBody List<RequestDTO> updates) 
{

// The request parameter in the RequestDTO contains id,name,age.
// The database table has five columns consisting id, name, age, phone, and email

// The API returns the value for both phone and email in JSON format. My task here is to update the columns(phone and email that was initially null) in the Table By ID. 

// how do i grab the returned values ( email and phone) from the api response and update it by id from the requestbody?



}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...