嗨,我有一个全局异常处理程序,如果发生异常,我会做一些事情。但是我有弹簧过滤器,弹簧过滤器无法在我的 globalexceptionhandler 中捕获。我在 stackoverflow 中阅读了类似的帖子,但仍然感到困惑。有没有办法在控制建议中捕获过滤器异常
@RestControllerAdvice
public class GlobalExceptionHandler extends ResponseEntityExceptionHandler {
@ExceptionHandler(Exception.class)
public ResponseEntity handleAllException(Exception ex, WebRequest request){
//To something in exception case
//Except filter exception All exceptions catched here
}