2017-11-03 21 views
0

프로젝트 중 하나에 회로 차단기를 사용해야하고 용도에 hystrix를 사용해야합니다. 그러나 타임 아웃 후에도 hystrix 폴백은 실행되지 않습니다. 놓친 것이 있으면 도와주세요. 미리 감사드립니다.Hystrix-javanica -Hystrix 시간 초과 대체가 트리거되지 않음

https://github.com/Netflix/Hystrix/tree/master/hystrix-contrib/hystrix-javanica

public class TestHystrix { 

@HystrixCommand(fallbackMethod="fallbackCallFunc", 
     commandProperties={ 
       @HystrixProperty(name = "execution.isolation.thread.timeoutInMilliseconds", value = "500") 
     }) 
public String callFunc() throws InterruptedException{ 
    Thread.sleep(1050); 
    return "success"; 
} 

public String fallbackCallFunc(){ 
    return "default"; 
} 

public static void main(String[] args) throws InterruptedException { 
    ConfigurationManager.getConfigInstance().setProperty("hystrix.command.callFunc.execution.isolation.thread.timeoutInMilliseconds", "500"); 
    TestHysterix testClass = new TestHysterix(); 
    System.out.println(testClass.callFunc()); 
} 
} 

답변