Sentinel自定义异常配置报错:The order of entry exit can‘t be paired with the order of entry, current entry。。。
谷粒商城集成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 就能够自动识别并使用这个异常处理器了。
更多推荐
所有评论(0)