配置文件开启
feign: hystrix: enabled: true
@Component public class LabelClientImpl implements LabelClient { @Override public Result findById(String id) {
return new Result(false, StatusCode.ERROR,"熔断器启动了");
} }
原文:https://www.cnblogs.com/qin1993/p/12566391.html