package org.jeecg.modules.doc.api.fallback; import feign.hystrix.FallbackFactory; import org.jeecg.modules.doc.api.LbDocApi; import org.springframework.stereotype.Component; /** * @author zyf */ @Component public class LbDocFallback implements FallbackFactory { @Override public LbDocApi create(Throwable throwable) { return null; } }