I know this may be simple. However, I just can\'t get it to work.
So I am trying to use Spring RestTemplate to map my JSON data. I have following JSON response from a re
If you need only print data, you can do this
RestTemplate restTemplate = new RestTemplate(); ResponseEntity response = restTemplate.getForEntity( "your url", String.class); System.out.println(response);