org.springframework.boot.web.reactive.error.ErrorWebExceptionHandler
时间: 2023-07-23 10:56:22 浏览: 179
org.springframework.boot.web.reactive.error.ErrorWebExceptionHandler是Spring Boot WebFlux中的一个接口,它允许您自定义处理应用程序中的错误。与传统的Web应用程序不同,WebFlux使用响应式编程模型,因此ErrorWebExceptionHandler需要返回Mono<Void>或者Flux<Void>,而不是直接返回响应。
实现ErrorWebExceptionHandler接口需要实现handle()方法,该方法处理异常并返回响应。您可以在方法中检查异常类型和HTTP状态代码,并根据需要返回自定义响应。
与传统的Web应用程序类似,Spring Boot WebFlux也提供了一些默认的异常处理程序,例如DefaultErrorWebExceptionHandler和AbstractErrorWebExceptionHandler,但是如果您需要更高度定制的响应,那么实现自己的ErrorWebExceptionHandler可能是更好的选择。
相关问题
org.springframework.boot.web.reactive.error.ErrorWebExceptionHandler和org.springframework.web.server.WebExceptionHandler区别
这两个接口都是用来处理Web应用程序中发生的异常的。但是它们的使用场景略有不同:
- `org.springframework.boot.web.reactive.error.ErrorWebExceptionHandler` 适用于 Spring Boot 2.x 中基于 Reactive Web 的应用程序,用于处理WebFlux框架中的异常。
- `org.springframework.web.server.WebExceptionHandler` 适用于 Spring 5.x 中基于 Servlet 的应用程序,用于处理Spring Web MVC框架中的异常。
另外, `org.springframework.boot.web.reactive.error.ErrorWebExceptionHandler` 接口还添加了一些特定于 Spring Boot 的功能,例如对错误页面的支持。而 `org.springframework.web.server.WebExceptionHandler` 接口则相对更加通用。
package com.bolt.gateway.handler; import com.bolt.gateway.provider.ResponseProvider; import org.springframework.boot.autoconfigure.web.ErrorProperties; import org.springframework.boot.autoconfigure.web.ResourceProperties; import org.springframework.boot.autoconfigure.web.reactive.error.DefaultErrorWebExceptionHandler; import org.springframework.boot.web.reactive.error.ErrorAttributes; import org.springframework.cloud.gateway.support.NotFoundException; import org.springframework.context.ApplicationContext; import org.springframework.http.HttpStatus; import org.springframework.web.reactive.function.server.*; import org.springframework.web.server.ResponseStatusException; import java.util.Map; /** * 异常处理 * * @author arch_group */ public class ErrorExceptionHandler extends DefaultErrorWebExceptionHandler { public ErrorExceptionHandler(ErrorAttributes errorAttributes, ResourceProperties resourceProperties, ErrorProperties errorProperties, ApplicationContext applicationContext) { super(errorAttributes, resourceProperties, errorProperties, applicationContext); } /** * 获取异常属性 */ @Override protected Map<String, Object> getErrorAttributes(ServerRequest request, boolean includeStackTrace) { int code = 500; Throwable error = super.getError(request); if (error instanceof NotFoundException) { code = 404; } if (error instanceof ResponseStatusException) { code = ((ResponseStatusException) error).getStatus().value(); } return ResponseProvider.response(code, this.buildMessage(request, error)); } /** * 指定响应处理方法为JSON处理的方法 * * @param errorAttributes */ @Override protected RouterFunction<ServerResponse> getRoutingFunction(ErrorAttributes errorAttributes) { return RouterFunctions.route(RequestPredicates.all(), this::renderErrorResponse); } /** * 根据code获取对应的HttpStatus * * @param errorAttributes */ @Override protected HttpStatus getHttpStatus(Map<String, Object> errorAttributes) { int statusCode = (int) errorAttributes.get("code"); return HttpStatus.valueOf(statusCode); } /** * 构建异常信息 * * @param request * @param ex * @return */ private String buildMessage(ServerRequest request, Throwable ex) { StringBuilder message = new StringBuilder("Failed to handle request ["); message.append(request.methodName()); message.append(" "); message.append(request.uri()); message.append("]"); if (ex != null) { message.append(": "); message.append(ex.getMessage()); } return message.toString(); } }
这是一个自定义的异常处理类,用于处理Spring Cloud Gateway中的异常情况。这个类继承自`DefaultErrorWebExceptionHandler`,并重写了一些方法来自定义异常处理的逻辑。
在这个类中,主要做了以下几件事情:
1. 重写`getErrorAttributes`方法:根据不同的异常类型,设置不同的响应状态码和错误信息。如果是`NotFoundException`异常,设置状态码为404;如果是`ResponseStatusException`异常,获取其对应的HTTP状态码。
2. 重写`getRoutingFunction`方法:指定响应处理方法为JSON处理的方法。
3. 重写`getHttpStatus`方法:根据错误属性中的`code`获取对应的HTTP状态码。
4. 定义了一个私有方法`buildMessage`:用于构建异常信息,包括请求方法、URI和异常消息。
通过重写这些方法,我们可以自定义异常处理的逻辑,包括设置响应状态码和错误信息。如果你还有其他问题,请继续提问。
阅读全文