How to extract data from JSON response coming from external REST API using RestTemplate in Spring Boot?
I am working on spring boot application for consuming external API using RestTemplate. Below is the service class that I have written to get response from external API: public CustomOlapReports getReportListByClientId(String clientId) { ResponseEntity<CustomOlapReports> responseEntity = null; CustomOlapReports jsonResponse =…