Have a scenario like where I need to process and check the size of response from below code before returning complete response.
ResponseEntity response = (ResponseEntity) restTemplate.exchange(strRequestURI, HttpMethod.GET, entity, responseClass, mInputParams);
Can some one help me here, Thanks.