songhaifeng

Results 1 comments of songhaifeng

Maybe this is an useful example for you,ex: ``` @HystrixCommand(fallbackMethod = "fb") public String foo() { return "bo"; } public String fb(Throwable exception) { logger.warn("real exception : {}", exception.getMessage()); return...