文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Spring Cloud Gateway自定义异常处理Exception Handler的示例分析

2023-06-20 21:20

关注

这篇文章给大家分享的是有关Spring Cloud Gateway自定义异常处理Exception Handler的示例分析的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

方法1: ErrorWebExceptionHandler (仅供示意)

自定义一个 GlobalErrorAttributes:

@Componentpublic class GlobalErrorAttributes extends DefaultErrorAttributes{    @Override    public Map<String, Object> getErrorAttributes(ServerRequest request, ErrorAttributeOptions options) {        Throwable error = super.getError(request);        Map<String, Object> map = super.getErrorAttributes(request, options);        map.put("status", HttpStatus.BAD_REQUEST.value());        map.put("message", error.getMessage());        return map;    }}

实现一个

@Component@Order(-2)public class GlobalErrorWebExceptionHandler extends AbstractErrorWebExceptionHandler {    public GlobalErrorWebExceptionHandler(GlobalErrorAttributes gea, ApplicationContext applicationContext,                                          ServerCodecConfigurer serverCodecConfigurer) {        super(gea, new WebProperties.Resources(), applicationContext);        super.setMessageWriters(serverCodecConfigurer.getWriters());        super.setMessageReaders(serverCodecConfigurer.getReaders());    }    //渲染html或json    @Override    protected RouterFunction<ServerResponse> getRoutingFunction(final ErrorAttributes errorAttributes) {        return RouterFunctions.route(RequestPredicates.all(), this::renderErrorResponse);    }    private Mono<ServerResponse> renderErrorResponse(final ServerRequest request) {        final Map<String, Object> errorPropertiesMap = getErrorAttributes(request, ErrorAttributeOptions.defaults());        return ServerResponse.status(HttpStatus.BAD_REQUEST)                .contentType(MediaType.APPLICATION_JSON)                .body(BodyInserters.fromValue(errorPropertiesMap));    }}

方法2, 仅实现一个 ErrorAttributes, 以覆盖默认的 DefaultErrorAttributes

//Spring 默认的就很好了.@Componentpublic class GatewayErrorAttributes extends DefaultErrorAttributes {    private static final Logger logger = LoggerFactory.getLogger(GatewayErrorAttributes.class);    @Override    public Map<String, Object> getErrorAttributes(ServerRequest request,  ErrorAttributeOptions options) {        Throwable error = super.getError(request);        Map<String, Object> errorAttributes = new HashMap<>(8);        errorAttributes.put("message", error.getMessage());        errorAttributes.put("method", request.methodName());        errorAttributes.put("path", request.path());        MergedAnnotation<ResponseStatus> responseStatusAnnotation = MergedAnnotations                .from(error.getClass(), MergedAnnotations.SearchStrategy.TYPE_HIERARCHY).get(ResponseStatus.class);        HttpStatus errorStatus = determineHttpStatus(error, responseStatusAnnotation);        //必须设置, 否则会报错, 因为 DefaultErrorWebExceptionHandler 的 renderErrorResponse 方法会获取此属性, 重新实现 DefaultErrorWebExceptionHandler也可.        errorAttributes.put("status", errorStatus.value());        errorAttributes.put("code", errorStatus.value());        //html view用        errorAttributes.put("timestamp", new Date());        //html view 用        errorAttributes.put("requestId", request.exchange().getRequest().getId());        errorAttributes.put("error", errorStatus.getReasonPhrase());        errorAttributes.put("exception", error.getClass().getName());        return errorAttributes;    }    //从DefaultErrorWebExceptionHandler中复制过来的    private HttpStatus determineHttpStatus(Throwable error, MergedAnnotation<ResponseStatus> responseStatusAnnotation) {        if (error instanceof ResponseStatusException) {            return ((ResponseStatusException) error).getStatus();        }        return responseStatusAnnotation.getValue("code", HttpStatus.class).orElse(HttpStatus.INTERNAL_SERVER_ERROR);    }    }

这样就可以了.

注意注意: 必须设置 errorAttributes.put("status", errorStatus.value()) , 否则会报错, 因为 DefaultErrorWebExceptionHandler 的 renderErrorResponse 方法会获取此属性. 除非你自己像方法一一样重新实现 DefaultErrorWebExceptionHandler.

然后在网关中访问一个不存在的服务, 即可看到效果.

curl 'http://127.0.0.1:8900/fundmain22/abc/gogogo?id=1000' --header 'Accept: application/json'
{"exception":"org.springframework.web.server.ResponseStatusException","path":"/fundmain22/abc/gogogo","code":404,"method":"GET","requestId":"094e53e5-1","message":"404 NOT_FOUND","error":"Not Found","status":404,"timestamp":"2021-08-09T11:07:44.106+0000"}

感谢各位的阅读!关于“Spring Cloud Gateway自定义异常处理Exception Handler的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯