springmvc 异常源码分析

默认的HandlerExceptionResolver

org.springframework.web.servlet.HandlerExceptionResolver=org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver,
org.springframework.web.servlet.mvc.annotation.ResponseStatusExceptionResolver,
org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver

ExceptionHandlerExceptionResolver、DefaultHandlerExceptionResolver、ResponseStatusExceptionResolver是<annotation-driven/>配置中定义的HandlerExceptionResolver实现类
<annotation-driven/>配置解析类AnnotationDrivenBeanDefinitionParser
https://blog.csdn.net/mll999888/article/details/77621352

ExceptionHandlerExceptionResolver

class ExceptionHandlerExceptionResolver implements ApplicationContextAware, InitializingBean 


    @Override
    public void afterPropertiesSet() {
        // Do this first, it may add ResponseBodyAdvice beans
        initExceptionHandlerAdviceCache();

        if (this.argumentResolvers == null) {
            List<HandlerMethodArgumentResolver> resolvers = getDefaultArgumentResolvers();
            this.argumentResolvers = new HandlerMethodArgumentResolverComposite().addResolvers(resolvers);
        }
        if (this.returnValueHandlers == null) {
            List<HandlerMethodReturnValueHandler> handlers = getDefaultReturnValueHandlers();
            this.returnValueHandlers = new HandlerMethodReturnValueHandlerComposite().addHandlers(handlers);
        }
    }

    private void initExceptionHandlerAdviceCache() {
        if (getApplicationContext() == null) {
            return;
        }

        //查找有ControllerAdvice注解的类,ControllerAdviceBean 包含一个HandlerTypePredicate 是否是相同的ControllerAdvice注解
        List<ControllerAdviceBean> adviceBeans = ControllerAdviceBean.findAnnotatedBeans(getApplicationContext());
        AnnotationAwareOrderComparator.sort(adviceBeans);

        for (ControllerAdviceBean adviceBean : adviceBeans) {
            Class<?> beanType = adviceBean.getBeanType();
            if (beanType == null) {
                throw new IllegalStateException("Unresolvable type for ControllerAdviceBean: " + adviceBean);
            }

             //查找此类中有ExceptionHandler注解的所有方法,并获取方法上的ExceptionHandler的value,也就是对应的exception,然后放到一个Map<Class<? extends Throwable>, Method>  map中
            ExceptionHandlerMethodResolver resolver = new ExceptionHandlerMethodResolver(beanType);
            if (resolver.hasExceptionMappings()) {
                this.exceptionHandlerAdviceCache.put(adviceBean, resolver);
            }
            if (ResponseBodyAdvice.class.isAssignableFrom(beanType)) {
                this.responseBodyAdvice.add(adviceBean);
            }
        }

    }




    /**
     * Find an {@code @ExceptionHandler} method and invoke it to handle the raised exception.
     */
    @Override
    @Nullable
    protected ModelAndView doResolveHandlerMethodException(HttpServletRequest request,
            HttpServletResponse response, @Nullable HandlerMethod handlerMethod, Exception exception) {

        ServletInvocableHandlerMethod exceptionHandlerMethod = getExceptionHandlerMethod(handlerMethod, exception);
        if (exceptionHandlerMethod == null) {
            return null;
        }

        if (this.argumentResolvers != null) {
            exceptionHandlerMethod.setHandlerMethodArgumentResolvers(this.argumentResolvers);
        }
        if (this.returnValueHandlers != null) {
            exceptionHandlerMethod.setHandlerMethodReturnValueHandlers(this.returnValueHandlers);
        }

        ServletWebRequest webRequest = new ServletWebRequest(request, response);
        ModelAndViewContainer mavContainer = new ModelAndViewContainer();

        try {
            if (logger.isDebugEnabled()) {
                logger.debug("Using @ExceptionHandler " + exceptionHandlerMethod);
            }
            Throwable cause = exception.getCause();
            if (cause != null) {
                // Expose cause as provided argument as well
                exceptionHandlerMethod.invokeAndHandle(webRequest, mavContainer, exception, cause, handlerMethod);
            }
            else {
                // Otherwise, just the given exception as-is
                exceptionHandlerMethod.invokeAndHandle(webRequest, mavContainer, exception, handlerMethod);
            }
        }
        catch (Throwable invocationEx) {
            // Any other than the original exception is unintended here,
            // probably an accident (e.g. failed assertion or the like).
            if (invocationEx != exception && logger.isWarnEnabled()) {
                logger.warn("Failure in @ExceptionHandler " + exceptionHandlerMethod, invocationEx);
            }
            // Continue with default processing of the original exception...
            return null;
        }

        if (mavContainer.isRequestHandled()) {
            return new ModelAndView();
        }
        else {
            ModelMap model = mavContainer.getModel();
            HttpStatus status = mavContainer.getStatus();
            ModelAndView mav = new ModelAndView(mavContainer.getViewName(), model, status);
            mav.setViewName(mavContainer.getViewName());
            if (!mavContainer.isViewReference()) {
                mav.setView((View) mavContainer.getView());
            }
            if (model instanceof RedirectAttributes) {
                Map<String, ?> flashAttributes = ((RedirectAttributes) model).getFlashAttributes();
                RequestContextUtils.getOutputFlashMap(request).putAll(flashAttributes);
            }
            return mav;
        }
    }

    /**
     * Find an {@code @ExceptionHandler} method for the given exception. The default
     * implementation searches methods in the class hierarchy of the controller first
     * and if not found, it continues searching for additional {@code @ExceptionHandler}
     * methods assuming some {@linkplain ControllerAdvice @ControllerAdvice}
     * Spring-managed beans were detected.
     * @param handlerMethod the method where the exception was raised (may be {@code null})
     * @param exception the raised exception
     * @return a method to handle the exception, or {@code null} if none
     */
    @Nullable
    protected ServletInvocableHandlerMethod getExceptionHandlerMethod(
            @Nullable HandlerMethod handlerMethod, Exception exception) {

        Class<?> handlerType = null;

        if (handlerMethod != null) {
            // Local exception handler methods on the controller class itself.
            // To be invoked through the proxy, even in case of an interface-based proxy.
            //从handler methods的当前controller类中查找有ExceptionHandler注解的所有方法
            handlerType = handlerMethod.getBeanType();
            ExceptionHandlerMethodResolver resolver = this.exceptionHandlerCache.get(handlerType);
            if (resolver == null) {
                resolver = new ExceptionHandlerMethodResolver(handlerType);
                this.exceptionHandlerCache.put(handlerType, resolver);
            }


            //查看此类的resolver是否有匹配处理此类型的异常,如果有就处理
            Method method = resolver.resolveMethod(exception);
            if (method != null) {
                return new ServletInvocableHandlerMethod(handlerMethod.getBean(), method);
            }
            // For advice applicability check below (involving base packages, assignable types
            // and annotation presence), use target class instead of interface-based proxy.
            if (Proxy.isProxyClass(handlerType)) {
                handlerType = AopUtils.getTargetClass(handlerMethod.getBean());
            }
        }

        //如果没有,则从HandlerAdvice注解的统一类中查找处理此类型异常的方法,然后处理
        for (Map.Entry<ControllerAdviceBean, ExceptionHandlerMethodResolver> entry : this.exceptionCache.entrySet()) {
            ControllerAdviceBean advice = entry.getKey();
            if (advice.isApplicableToBeanType(handlerType)) {
                ExceptionHandlerMethodResolver resolver = entry.getValue();
                Method method = resolver.resolveMethod(exception);
                if (method != null) {
                    return new ServletInvocableHandlerMethod(advice.resolveBean(), method);
                }
            }
        }

        return null;
    }


ExceptionHandlerMethodResolver

   private final Map<Class<? extends Throwable>, Method> mappedMethods = new HashMap<>(16);


   /**
    * A filter for selecting {@code @ExceptionHandler} methods.
    */
   public static final MethodFilter EXCEPTION_HANDLER_METHODS = method ->
           AnnotatedElementUtils.hasAnnotation(method, ExceptionHandler.class);

   /**
    * A constructor that finds {@link ExceptionHandler} methods in the given type.
    * @param handlerType the type to introspect
    */
   public ExceptionHandlerMethodResolver(Class<?> handlerType) {
       for (Method method : MethodIntrospector.selectMethods(handlerType, EXCEPTION_HANDLER_METHODS)) {
           for (Class<? extends Throwable> exceptionType : detectExceptionMappings(method)) {
               addExceptionMapping(exceptionType, method);
           }
       }
   }


   /**
    * Extract exception mappings from the {@code @ExceptionHandler} annotation first,
    * and then as a fallback from the method signature itself.
    */
   @SuppressWarnings("unchecked")
   private List<Class<? extends Throwable>> detectExceptionMappings(Method method) {
       List<Class<? extends Throwable>> result = new ArrayList<>();
       detectAnnotationExceptionMappings(method, result);
       if (result.isEmpty()) {
           for (Class<?> paramType : method.getParameterTypes()) {
               if (Throwable.class.isAssignableFrom(paramType)) {
                   result.add((Class<? extends Throwable>) paramType);
               }
           }
       }
       if (result.isEmpty()) {
           throw new IllegalStateException("No exception types mapped to " + method);
       }
       return result;
   }

   private void detectAnnotationExceptionMappings(Method method, List<Class<? extends Throwable>> result) {
       ExceptionHandler ann = AnnotatedElementUtils.findMergedAnnotation(method, ExceptionHandler.class);
       Assert.state(ann != null, "No ExceptionHandler annotation");
       result.addAll(Arrays.asList(ann.value()));
   }

   private void addExceptionMapping(Class<? extends Throwable> exceptionType, Method method) {
       Method oldMethod = this.mappedMethods.put(exceptionType, method);
       if (oldMethod != null && !oldMethod.equals(method)) {
           throw new IllegalStateException("Ambiguous @ExceptionHandler method mapped for [" +
                   exceptionType + "]: {" + oldMethod + ", " + method + "}");
       }
   }




   /**
    * Find a {@link Method} to handle the given exception.
    * Use {@link ExceptionDepthComparator} if more than one match is found.
    * @param exception the exception
    * @return a Method to handle the exception, or {@code null} if none found
    */
   @Nullable
   public Method resolveMethod(Exception exception) {
       return resolveMethodByThrowable(exception);
   }

   /**
    * Find a {@link Method} to handle the given Throwable.
    * Use {@link ExceptionDepthComparator} if more than one match is found.
    * @param exception the exception
    * @return a Method to handle the exception, or {@code null} if none found
    * @since 5.0
    */
   @Nullable
   public Method resolveMethodByThrowable(Throwable exception) {
       Method method = resolveMethodByExceptionType(exception.getClass());
       if (method == null) {
           Throwable cause = exception.getCause();
           if (cause != null) {
               method = resolveMethodByExceptionType(cause.getClass());
           }
       }
       return method;
   }

   /**
    * Find a {@link Method} to handle the given exception type. This can be
    * useful if an {@link Exception} instance is not available (e.g. for tools).
    * @param exceptionType the exception type
    * @return a Method to handle the exception, or {@code null} if none found
    */
   @Nullable
   public Method resolveMethodByExceptionType(Class<? extends Throwable> exceptionType) {
       Method method = this.exceptionLookupCache.get(exceptionType);
       if (method == null) {
           method = getMappedMethod(exceptionType);
           this.exceptionLookupCache.put(exceptionType, method);
       }
       return method;
   }

   /**
    * Return the {@link Method} mapped to the given exception type, or {@code null} if none.
    */
   @Nullable
   private Method getMappedMethod(Class<? extends Throwable> exceptionType) {
       List<Class<? extends Throwable>> matches = new ArrayList<>();
       for (Class<? extends Throwable> mappedException : this.mappedMethods.keySet()) {
           if (mappedException.isAssignableFrom(exceptionType)) {
               matches.add(mappedException);
           }
       }
       if (!matches.isEmpty()) {
           matches.sort(new ExceptionDepthComparator(exceptionType));
           return this.mappedMethods.get(matches.get(0));
       }
       else {
           return null;
       }
   }


https://www.cnblogs.com/fangjian0423/p/springMVC-exception-analysis.html
https://www.cnblogs.com/junzi2099/p/7840294.html

    原文作者:jiezzy
    原文地址: https://www.jianshu.com/p/dc4d40241ee0
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞