Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

resttemplate get rest api call in java

private static void getEmployees()
{
    final String uri = "http://localhost:8080/springrestexample/employees";
 
    //TODO: Autowire the RestTemplate in all the examples
    RestTemplate restTemplate = new RestTemplate();
 
    String result = restTemplate.getForObject(uri, String.class);
    System.out.println(result);
}
Source by howtodoinjava.com #
 
PREVIOUS NEXT
Tagged: #resttemplate #rest #api #call #java
ADD COMMENT
Topic
Name
9+2 =