Spring Cloud Gateway自定义异常处理Exception Handler的方法小结

网友投稿 391 2022-12-20

Spring Cloud Gateway自定义异常处理Exception Handler的方法小结

版本: Spring Cloud 2020.0.3

常见的方法有 实现自己的 DefaultErrorWebExceptionHandler 或 仅实现ErrorAttributes.

方法1: ErrorWebExceptionHandler (仅供示意)

自定义一个 GlobalErrorAttributes:

@Component

public class GlobalErrorAttributes extends DefaultErrorAttributes{

@Override

public Map getErrorAttributes(ServerRequest request, ErrorAttributeOptions options) {

Throwable error = super.getError(request);

Map 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 getRoutingFunction(final ErrorAttributes errorAttributes) {

return RouterFunctions.route(RequestPredicates.all(), this::renderErrorResponse);

}

private Mono renderErrorResponse(final ServerRequest request) {

final Map errorPropertiesMap = getErrorAttributes(request, ErrorAttributeOptions.defaults());

return ServerResponse.status(HttpStatus.BAD_REQUEST)

.contentType(MediaType.APPLICATION_JSON)

.body(BodyInserters.fromValue(errorPropertiesMap));

}

}

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

//Spring 默认的就很好了.

@Component

public class GatewayErrorAttributes extends DefaultErrorAttributes {

private static final Logger logger = LoggerFactory.getLogger(GatewayErrorAttributes.class);

@Override

public Map getErrorAttributes(ServerRequest request, ErrorAttributeOptions options) {

Throwable error = super.getError(request);

Map errorAttributes = new HashMap<>(8);

errorAttributes.put("message", error.getMessage());

errorAttributes.put("method", request.methodName());

errorAttributes.put("path", request.path());

MergedAnnotation 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 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"}http://

感谢网络上的各种文章...

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java之策略模式比较器案例讲解
下一篇:Java日常练习题,每天进步一点点(52)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~