我知道针对下面的情况,hystrix会熔断
@HystrixCommand(...) public doA(){ ... throw RuntimeException(); }
但是如果抛出的是checked Exception呢?
@HystrixCommand(...) public doB() throws Exception{ ... throw Exception(); }
2.1m questions
2.1m answers
60 comments
57.0k users