我是靠谱客的博主 坦率乌冬面,最近开发中收集的这篇文章主要介绍SpringCloud-Sentinel的服务熔断(Day15)无任何配置时只配置fallback时只配置blockHandlerfallback和blockHandler都配置配置exceptionsToIgnore,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

无任何配置时

我们当前没有配置对服务的降级和限流,所以如果当接口出现异常时就会直接将异常打印到前端。
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

只配置fallback时

我们当前配置对服务的异常兜底的处理方法,当接口出现异常或者超时等就会直接把我们指定的异常方法打印到前端。

配置控制层

@RequestMapping("/consumer/fallback/{id}")
@SentinelResource(value = "fallback", fallback = "handlerFallback" )
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;
}

//本例是fallback
public CommonResult handlerFallback(@PathVariable  Long id,Throwable e) {
    Payment payment = new Payment(id,"null");
    return new CommonResult<>(444,"兜底异常handlerFallback,exception内容  "+e.getMessage(),payment);
}

在这里插入图片描述

只配置blockHandler

我们当前配置对服务的限流规则的处理方法,当接口出现被限流或者服务降级就直接把我们指定的异常方法打印到前端。

配置控制层

@RequestMapping("/consumer/fallback/{id}")
@SentinelResource(value = "fallback", blockHandler = "blockHandler" )
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;
}

//本例是blockHandler
public CommonResult blockHandler(@PathVariable  Long id, BlockException blockException) {
    Payment payment = new Payment(id,"null");
    return new CommonResult<>(445,"blockHandler-sentinel限流,无此流水: blockException  "+blockException.getMessage(),payment);
}

在这里插入图片描述
在这里插入图片描述

fallback和blockHandler都配置

我们当前配置对服务的限流规则以及异常超时的处理方法,当接口出现被限流或者服务降级以及接口异常或超时就直接把我们相应指定的异常方法打印到前端。

配置控制层

@RequestMapping("/consumer/fallback/{id}")
@SentinelResource(value = "fallback",fallback = "handlerFallback",blockHandler = "blockHandler")
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;
}

//本例是blockHandler
public CommonResult blockHandler(@PathVariable  Long id, BlockException blockException) {
    Payment payment = new Payment(id,"null");
    return new CommonResult<>(445,"blockHandler-sentinel限流,无此流水: blockException  "+blockException.getMessage(),payment);
}

//本例是fallback
public CommonResult handlerFallback(@PathVariable  Long id,Throwable e) {
    Payment payment = new Payment(id,"null");
    return new CommonResult<>(444,"兜底异常handlerFallback,exception内容  "+e.getMessage(),payment);
}

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

配置exceptionsToIgnore

我们配置了exceptionsToIgnore的参数,即忽略这种异常,当接口报出IllegalArgumentException异常时将直接返回给前端,不返回兜底的方法了。

编辑控制层

@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;
}

//本例是blockHandler
public CommonResult blockHandler(@PathVariable  Long id, BlockException blockException) {
    Payment payment = new Payment(id,"null");
    return new CommonResult<>(445,"blockHandler-sentinel限流,无此流水: blockException  "+blockException.getMessage(),payment);
}

//本例是fallback
public CommonResult handlerFallback(@PathVariable  Long id,Throwable e) {
    Payment payment = new Payment(id,"null");
    return new CommonResult<>(444,"兜底异常handlerFallback,exception内容  "+e.getMessage(),payment);
}

在这里插入图片描述

最后

以上就是坦率乌冬面为你收集整理的SpringCloud-Sentinel的服务熔断(Day15)无任何配置时只配置fallback时只配置blockHandlerfallback和blockHandler都配置配置exceptionsToIgnore的全部内容,希望文章能够帮你解决SpringCloud-Sentinel的服务熔断(Day15)无任何配置时只配置fallback时只配置blockHandlerfallback和blockHandler都配置配置exceptionsToIgnore所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部