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