출처: https://netflixtechblog.com/netflixoss-season-2-episode-1-b477d8879799
출처: https://github.com/Netflix/Hystrix/wiki
@HystrixCommand public String anyMethodWithExternalDependency() { URI uri = URI.create("http://172.32.1.22:8090/recommended"); String result = this.restTemplate.getForObject(uri, String.class); return result; } |