Sentinel降级和熔断配置

源码:

@RestController
@Slf4j
public class CircleBreakerController
{
    public static final String SERVICE_URL = "http://nacos-payment-provider";

    @Resource
    private RestTemplate restTemplate;

    @RequestMapping("/consumer/fallback/{id}")
    @SentinelResource(value = "fallback",
    		fallback = "handlerFallback",
            blockHandler = "blockHandler",
            exceptionsToIgnore = {IllegalArgumentException.class}) //降级和熔断都配置
    public CommonResult<Payment> fallback(@PathVariable Long id)
    {
        CommonResult<Payment> result = restTemplate.getForObject(SERVICE_URL + "/paymentSQL/"+id,CommonResult.class,id);

        if (id == 4) {
            throw new IllegalArgumentException ("IllegalArgumentException,非法参数异常....");
        }else if (result.getData() == null) {
            throw new NullPointerException ("NullPointerException,该ID没有对应记录,空指针异常");
        }

        return result;
    }

    public CommonResult handlerFallback(@PathVariable  Long id,Throwable e) {
        Payment payment = new Payment(id,"null");
        return new CommonResult<>(444,"降级"+e.getMessage(),payment);
    }

    public CommonResult blockHandler(@PathVariable  Long id, BlockException blockException) {
        Payment payment = new Payment(id,"null");
        return new CommonResult<>(445,"熔断"+blockException.getMessage(),payment);
    }
}

解释:

Sentinel降级和熔断配置_第1张图片
@SentinelResource中:
value为资源名
fallback为降级调用的方法
blockHandler为熔断调用的方法
exceptionsToIgnore为忽视的异常类

如果如图中配置了exceptionsToIgnore后,Sentinel会忽视图中的IllegalArgumentException异常类,直接返回错误页面,不会降级和熔断
Sentinel降级和熔断配置_第2张图片

你可能感兴趣的:(笔记,java,spring,cloud)