谷粒商城集成Sentinel自定义异常配置报错:
com.alibaba.csp.sentinel.ErrorEntryFreeException: The order of entry exit can’t be paired with the order of entry, current entry in context: , but expected:

原因:因为我使用的spring boot版本是2.2.2.RELEASE,引入的sentinel版本是1.7.1,所以自定义异常配置有所改变。

解决方案:
在 Sentinel 的较新版本中,对于Web应用的异常处理通常是通过实现 BlockExceptionHandler 接口(对于Spring Web应用)来自定义异常处理逻辑的。对于非Web场景,则通过定义全局的异常处理器来进行处理。

对于Sentinel 1.71版本,如果你是在 Spring Cloud Alibaba 环境下使用 Sentinel,可以通过实现 BlockExceptionHandler 来自定义异常处理逻辑。以下是一个针对Spring Web应用的示例:

Spring Web应用中自定义异常处理
创建一个类实现 BlockExceptionHandler 接口:

package com.atguigu.gulimall.seckill.gulimallseckill.handler;

import com.alibaba.csp.sentinel.adapter.spring.webmvc.callback.BlockExceptionHandler;
import com.alibaba.csp.sentinel.slots.block.BlockException;
import com.alibaba.fastjson.JSONObject;
import com.atguigu.common.enums.BizCodeEnum;
import com.atguigu.common.utils.R;
import org.springframework.stereotype.Component;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@Component
public class SeckillBlockExceptionHandler implements BlockExceptionHandler{

    @Override
    public void handle(HttpServletRequest request, HttpServletResponse response, BlockException e) throws Exception {
        R res = R.error(BizCodeEnum.TOO_MANY_REQUESTS.getCode(), BizCodeEnum.TOO_MANY_REQUESTS.getMsg());
        response.setContentType("application/json;charset=UTF-8");
        response.getWriter().write(JSONObject.toJSONString(res));
    }
}

这个例子中,我们自定义了一个异常处理器 SeckillBlockExceptionHandler ,当触发流控规则时,它会返回 HTTP 429 状态码(Too Many Requests)和一条自定义的错误消息。

确保你的自定义异常处理器被Spring容器管理:
上面的示例中,我们通过 @Component 注解使得 SeckillBlockExceptionHandler 成为一个 Spring 管理的 Bean。这样,Spring 就能够自动识别并使用这个异常处理器了。

GitHub 加速计划 / sentine / Sentinel
19
6
下载
alibaba/Sentinel: Sentinel 是阿里巴巴开源的一款面向分布式服务架构的流量控制、熔断降级组件,提供实时监控、限流、降级和系统保护功能,适用于微服务治理场景。
最近提交(Master分支:4 个月前 )
195150bc * fix issue 2485 which occur oom when using async servlet request. * optimize imports * 1. fix the same issue in the webmvc-v6x 2. improve based on review comments 3 个月前
b78b09d3 4 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐