package com.ruoyi.other.api.factory; import com.ruoyi.common.core.domain.R; import com.ruoyi.other.api.domain.TIntegralRule; import com.ruoyi.other.api.feignClient.IntegralRuleClient; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.cloud.openfeign.FallbackFactory; import org.springframework.stereotype.Component; /** * 商品服务降级处理 * * @author ruoyi */ @Component public class IntegralRuleFallbackFactory implements FallbackFactory { private static final Logger log = LoggerFactory.getLogger(IntegralRuleFallbackFactory.class); @Override public IntegralRuleClient create(Throwable throwable) { log.error("积分规则调用失败:{}", throwable.getMessage()); return new IntegralRuleClient() { @Override public R getSet() { return R.fail("获取积分设置失败:" + throwable.getMessage()); } }; } }