wangxing-git
Results
1
comments of
wangxing-git
I found another way to do this, using `WebExceptionHandler`. ``` @Bean @ConditionalOnMissingBean(name = "globalWebExceptionHandler") @Order(Ordered.HIGHEST_PRECEDENCE + 1000) public WebExceptionHandler globalWebExceptionHandler() { return ReactiveExceptionUtils::handleException; } ``` I delegated the exception to...