Java SpringMVC
Spring MVC中,通过组合使用注解@ControllerAdvice和其他一些注解,可以为开发人员实现的控制器类做一些全局性的定制,具体来讲,可作如下定制 :

  • 结合@ExceptionHandler使用 ==> 添加统一的异常处理控制器方法
  • 结合@ModelAttribute使用 ==> 使用共用方法添加渲染视图的数据模型属性
  • 结合@InitBinder使用 ==> 使用共用方法初始化控制器方法调用使用的数据绑定器

数据绑定器涉及到哪些参数/属性需要/不需要绑定,设置数据类型转换时使用的PropertyEditorFormatter等。

@ControllerAdvice@InitBinder配合使用打印请求的数据绑定的实体类

  1. import lombok.extern.slf4j.Slf4j;
  2. import org.springframework.web.bind.WebDataBinder;
  3. import org.springframework.web.bind.annotation.ControllerAdvice;
  4. import org.springframework.web.bind.annotation.InitBinder;
  5. import java.util.Optional;
  6. /**
  7. * LogControllerAdvice
  8. * <p>
  9. * encoding:UTF-8
  10. *
  11. * @author Fcant 下午 12:29 2021/2/23/0023
  12. */
  13. @Slf4j
  14. @ControllerAdvice
  15. public class ControllerLogAdvice {
  16. /**
  17. * 应用到所有@RequestMapping注解方法,在其执行之前初始化数据绑定器
  18. * @param binder
  19. */
  20. @InitBinder
  21. public void initBinder(WebDataBinder binder) {
  22. if (Optional.ofNullable(binder.getTarget()).isPresent()) {
  23. log.info("POST请求映射的对象名为:" + binder.getObjectName());
  24. log.info("请求的Body内容为:" + binder.getTarget().toString());
  25. }
  26. }
  27. }

1、@ControllerAdvice注解起作用的时机

首先,容器启动时,会定义类型为RequestMappingHandlerAdapterbean组件,这是DispatcherServlet用于执行控制器方法的HandlerAdapter,它实现了接口InitializingBean,所以自身在初始化时其方法afterPropertiesSet会被调用执行。

  1. @Override
  2. public void afterPropertiesSet() {
  3. // Do this first, it may add ResponseBody advice beans
  4. initControllerAdviceCache();
  5. // 省略掉无关代码
  6. // ...
  7. }

从以上代码可以看出,RequestMappingHandlerAdapter bean组件在自身初始化时调用了initControllerAdviceCache,从这个方法的名字上就可以看出,这是一个ControllerAdvice相关的初始化函数,而initControllerAdviceCache具体又做了什么呢?继续来看 :

  1. private void initControllerAdviceCache() {
  2. if (getApplicationContext() == null) {
  3. return;
  4. }
  5. // 找到所有使用了注解 @ControllerAdvice 的bean组件
  6. List<ControllerAdviceBean> adviceBeans = ControllerAdviceBean.findAnnotatedBeans(getApplicationContext());
  7. // 排序
  8. AnnotationAwareOrderComparator.sort(adviceBeans);
  9. // this. requestResponseBodyAdvice :
  10. // 用于记录所有 @ControllerAdvice + RequestBodyAdvice/ResponseBodyAdvice bean
  11. // this.modelAttributeAdviceCache :
  12. // 用于记录所有 @ControllerAdvice bean组件中的 @ModuleAttribute 方法
  13. // this.initBinderAdviceCache :
  14. // 用于记录所有 @ControllerAdvice bean组件中的 @InitBinder 方法
  15. // 用于临时记录所有 @ControllerAdvice + RequestResponseBodyAdvice bean
  16. List<Object> requestResponseBodyAdviceBeans = new ArrayList<>();
  17. // 遍历每个使用了注解 @ControllerAdvice 的 bean 组件
  18. for (ControllerAdviceBean adviceBean : adviceBeans) {
  19. Class<?> beanType = adviceBean.getBeanType();
  20. if (beanType == null) {
  21. throw new IllegalStateException("Unresolvable type for ControllerAdviceBean: " + adviceBean);
  22. }
  23. // 获取当前 ControllerAdviceBean 中所有使用了 @ModelAttribute 注解的方法
  24. Set<Method> attrMethods = MethodIntrospector.selectMethods(beanType, MODEL_ATTRIBUTE_METHODS);
  25. if (!attrMethods.isEmpty()) {
  26. this.modelAttributeAdviceCache.put(adviceBean, attrMethods);
  27. }
  28. // 获取当前 ControllerAdviceBean 中所有使用了 @InitMethod 注解的方法
  29. Set<Method> binderMethods = MethodIntrospector.selectMethods(beanType, INIT_BINDER_METHODS);
  30. if (!binderMethods.isEmpty()) {
  31. this.initBinderAdviceCache.put(adviceBean, binderMethods);
  32. }
  33. // 如果当前 ControllerAdviceBean 继承自 RequestBodyAdvice,将其登记到 requestResponseBodyAdviceBeans
  34. if (RequestBodyAdvice.class.isAssignableFrom(beanType)) {
  35. requestResponseBodyAdviceBeans.add(adviceBean);
  36. }
  37. // 如果当前 ControllerAdviceBean 继承自 ResponseBodyAdvice,将其登记到 requestResponseBodyAdviceBeans
  38. if (ResponseBodyAdvice.class.isAssignableFrom(beanType)) {
  39. requestResponseBodyAdviceBeans.add(adviceBean);
  40. }
  41. }
  42. if (!requestResponseBodyAdviceBeans.isEmpty()) {
  43. this.requestResponseBodyAdvice.addAll(0, requestResponseBodyAdviceBeans);
  44. }
  45. if (logger.isDebugEnabled()) {
  46. int modelSize = this.modelAttributeAdviceCache.size();
  47. int binderSize = this.initBinderAdviceCache.size();
  48. int reqCount = getBodyAdviceCount(RequestBodyAdvice.class);
  49. int resCount = getBodyAdviceCount(ResponseBodyAdvice.class);
  50. if (modelSize == 0 && binderSize == 0 && reqCount == 0 && resCount == 0) {
  51. logger.debug("ControllerAdvice beans: none");
  52. }
  53. else {
  54. logger.debug("ControllerAdvice beans: " + modelSize + " @ModelAttribute, " + binderSize +
  55. " @InitBinder, " + reqCount + " RequestBodyAdvice, " + resCount + " ResponseBodyAdvice");
  56. }
  57. }
  58. }

从以上initControllerAdviceCache方法的实现逻辑来看,它将容器中所有使用了注解@ControllerAdvicebean或者其方法都分门别类做了统计,记录到了RequestMappingHandlerAdapter实例的三个属性中 :

  • requestResponseBodyAdvice
  • 用于记录所有@ControllerAdvice + RequestBodyAdvice/ResponseBodyAdvice bean组件
  • modelAttributeAdviceCache
  • 用于记录所有 @ControllerAdvice bean组件中的 @ModuleAttribute 方法
  • initBinderAdviceCache
  • 用于记录所有@ControllerAdvice bean组件中的 @InitBinder 方法

到此为止,可以知道,使用注解@ControllerAdvicebean中的信息被提取出来了,但是,这些信息又是怎么使用的呢 ?继续来看。

2、@ControllerAdvice 定义信息的使用

1. requestResponseBodyAdvice的使用

  1. /**
  2. * Return the list of argument resolvers to use including built-in resolvers
  3. * and custom resolvers provided via {@link #setCustomArgumentResolvers}.
  4. */
  5. private List<HandlerMethodArgumentResolver> getDefaultArgumentResolvers() {
  6. List<HandlerMethodArgumentResolver> resolvers = new ArrayList<>();
  7. // ... 省略无关代码
  8. resolvers.add(new RequestResponseBodyMethodProcessor(getMessageConverters(),
  9. this.requestResponseBodyAdvice));
  10. // ... 省略无关代码
  11. resolvers.add(new RequestPartMethodArgumentResolver(getMessageConverters(),
  12. this.requestResponseBodyAdvice));
  13. // ... 省略无关代码
  14. resolvers.add(new HttpEntityMethodProcessor(getMessageConverters(),
  15. this.requestResponseBodyAdvice));
  16. // ... 省略无关代码
  17. return resolvers;
  18. }

getDefaultArgumentResolvers方法用于准备RequestMappingHandlerAdapter执行控制器方法过程中缺省使用的HandlerMethodArgumentResolver,从上面代码可见,requestResponseBodyAdvice会被传递给RequestResponseBodyMethodProcessor/RequestPartMethodArgumentResolver/HttpEntityMethodProcessor这三个参数解析器,不难猜测,它们在工作时会使用到该requestResponseBodyAdvice,但具体怎么使用,为避免过深细节影响理解,不继续展开。
方法getDefaultArgumentResolvers也在RequestMappingHandlerAdapter初始化方法中被调用执行,如下所示 :

  1. @Override
  2. public void afterPropertiesSet() {
  3. // Do this first, it may add ResponseBody advice beans
  4. initControllerAdviceCache();
  5. if (this.argumentResolvers == null) {
  6. List<HandlerMethodArgumentResolver> resolvers = getDefaultArgumentResolvers(); // <==
  7. this.argumentResolvers = new HandlerMethodArgumentResolverComposite()
  8. .addResolvers(resolvers);
  9. }
  10. // 省略无关代码
  11. }

2. modelAttributeAdviceCache的使用

  1. private ModelFactory getModelFactory(HandlerMethod handlerMethod, WebDataBinderFactory binderFactory) {
  2. SessionAttributesHandler sessionAttrHandler = getSessionAttributesHandler(handlerMethod);
  3. Class<?> handlerType = handlerMethod.getBeanType();
  4. Set<Method> methods = this.modelAttributeCache.get(handlerType);
  5. if (methods == null) {
  6. // 获取当前控制器类中使用了 @ModelAttribute 的方法
  7. methods = MethodIntrospector.selectMethods(handlerType, MODEL_ATTRIBUTE_METHODS);
  8. this.modelAttributeCache.put(handlerType, methods);
  9. }
  10. List<InvocableHandlerMethod> attrMethods = new ArrayList<>();
  11. // Global methods first
  12. // 遍历@ControllerAdvice bean中所有使用了 @ModelAttribute 的方法,
  13. // 将其包装成 InvocableHandlerMethod 放到 attrMethods
  14. // ********* 这里就是 modelAttributeAdviceCache 被使用到的地方了 ************
  15. this.modelAttributeAdviceCache.forEach((clazz, methodSet) -> {
  16. if (clazz.isApplicableToBeanType(handlerType)) {
  17. Object bean = clazz.resolveBean();
  18. for (Method method : methodSet) {
  19. attrMethods.add(createModelAttributeMethod(binderFactory, bean, method));
  20. }
  21. }
  22. });
  23. // 遍历当前控制器类中中所有使用了 @ModelAttribute 的方法,
  24. // 也将其包装成 InvocableHandlerMethod 放到 attrMethods
  25. for (Method method : methods) {
  26. Object bean = handlerMethod.getBean();
  27. attrMethods.add(createModelAttributeMethod(binderFactory, bean, method));
  28. }
  29. // 此时 attrMethods 包含了两类 InvocableHandlerMethod, 分别来自于 :
  30. // 1. @ControllerAdvice bean 中所有使用了 @ModelAttribute 的方法
  31. // 2. 当前控制器类中中所有使用了 @ModelAttribute 的方法
  32. return new ModelFactory(attrMethods, binderFactory, sessionAttrHandler);
  33. }
  34. / 从指定 bean 的方法 method ,其实是一个使用了注解 @ModelAttribute 的方法,
  35. / 构造一个 InvocableHandlerMethod 对象
  36. private InvocableHandlerMethod createModelAttributeMethod(WebDataBinderFactory factory,
  37. Object bean, Method method) {
  38. InvocableHandlerMethod attrMethod = new InvocableHandlerMethod(bean, method);
  39. if (this.argumentResolvers != null) {
  40. attrMethod.setHandlerMethodArgumentResolvers(this.argumentResolvers);
  41. }
  42. attrMethod.setParameterNameDiscoverer(this.parameterNameDiscoverer);
  43. attrMethod.setDataBinderFactory(factory);
  44. return attrMethod;
  45. }

从此方法可以看到,getModelFactory方法使用到了modelAttributeAdviceCache,它会根据其中每个元素构造成一个InvocableHandlerMethod,最终传递给要创建的ModelFactory对象。而getModelFactory又在什么时候被使用呢 ? 它会在RequestMappingHandlerAdapter执行一个控制器方法的准备过程中被调用,如下所示 :

  1. @Nullable
  2. protected ModelAndView invokeHandlerMethod(HttpServletRequest request,
  3. HttpServletResponse response, HandlerMethod handlerMethod) throws Exception {
  4. ServletWebRequest webRequest = new ServletWebRequest(request, response);
  5. try {
  6. // 构造调用 handlerMethod 所要使用的数据绑定器工厂
  7. WebDataBinderFactory binderFactory = getDataBinderFactory(handlerMethod);
  8. // 构造调用 handlerMethod 所要使用的数据模型工厂
  9. ModelFactory modelFactory = getModelFactory(handlerMethod, binderFactory);
  10. // 省略无关代码 ...
  11. }
  12. }

3. initBinderAdviceCache的使用

  1. private WebDataBinderFactory getDataBinderFactory(HandlerMethod handlerMethod) throws Exception {
  2. Class<?> handlerType = handlerMethod.getBeanType();
  3. Set<Method> methods = this.initBinderCache.get(handlerType);
  4. if (methods == null) {
  5. // 获取当前控制器类中使用了 @InitBinder 的方法
  6. methods = MethodIntrospector.selectMethods(handlerType, INIT_BINDER_METHODS);
  7. this.initBinderCache.put(handlerType, methods);
  8. }
  9. List<InvocableHandlerMethod> initBinderMethods = new ArrayList<>();
  10. // Global methods first
  11. // 遍历@ControllerAdvice bean中所有使用了 @InitBinder 的方法,
  12. // 将其包装成 InvocableHandlerMethod 放到 initBinderMethods
  13. // ********* 这里就是 initBinderAdviceCache 被使用到的地方了 ************
  14. this.initBinderAdviceCache.forEach((clazz, methodSet) -> {
  15. if (clazz.isApplicableToBeanType(handlerType)) {
  16. Object bean = clazz.resolveBean();
  17. for (Method method : methodSet) {
  18. initBinderMethods.add(createInitBinderMethod(bean, method));
  19. }
  20. }
  21. });
  22. // 遍历当前控制器类中所有使用了 @InitBinder 的方法,
  23. // 将其包装成 InvocableHandlerMethod 放到 initBinderMethods
  24. for (Method method : methods) {
  25. Object bean = handlerMethod.getBean();
  26. initBinderMethods.add(createInitBinderMethod(bean, method));
  27. }
  28. // 此时 initBinderMethods 包含了两类 InvocableHandlerMethod, 分别来自于 :
  29. // 1. @ControllerAdvice bean 中所有使用了 @InitBinder 的方法
  30. // 2. 当前控制器类中中所有使用了 @InitBinder 的方法
  31. return createDataBinderFactory(initBinderMethods);
  32. }
  33. // 从指定 bean 的方法 method ,其实是一个使用了注解 @InitBinder 的方法,
  34. // 构造一个 InvocableHandlerMethod 对象
  35. private InvocableHandlerMethod createInitBinderMethod(Object bean, Method method) {
  36. InvocableHandlerMethod binderMethod = new InvocableHandlerMethod(bean, method);
  37. if (this.initBinderArgumentResolvers != null) {
  38. binderMethod.setHandlerMethodArgumentResolvers(this.initBinderArgumentResolvers);
  39. }
  40. binderMethod.setDataBinderFactory(new DefaultDataBinderFactory(this.webBindingInitializer));
  41. binderMethod.setParameterNameDiscoverer(this.parameterNameDiscoverer);
  42. return binderMethod;
  43. }
  44. /**
  45. * Template method to create a new InitBinderDataBinderFactory instance.
  46. * <p>The default implementation creates a ServletRequestDataBinderFactory.
  47. * This can be overridden for custom ServletRequestDataBinder subclasses.
  48. * @param binderMethods {@code @InitBinder} methods
  49. * @return the InitBinderDataBinderFactory instance to use
  50. * @throws Exception in case of invalid state or arguments
  51. */
  52. protected InitBinderDataBinderFactory createDataBinderFactory(
  53. List<InvocableHandlerMethod> binderMethods)
  54. throws Exception {
  55. return new ServletRequestDataBinderFactory(binderMethods, getWebBindingInitializer());
  56. }

从此方法可以看到,getDataBinderFactory方法使用到了initBinderAdviceCache,它会根据其中每个元素构造成一个InvocableHandlerMethod,最终传递给要创建的InitBinderDataBinderFactory对象。而getDataBinderFactory又在什么时候被使用呢 ? 它会在RequestMappingHandlerAdapter执行一个控制器方法的准备过程中被调用,如下所示 :

  1. @Nullable
  2. protected ModelAndView invokeHandlerMethod(HttpServletRequest request,
  3. HttpServletResponse response, HandlerMethod handlerMethod) throws Exception {
  4. ServletWebRequest webRequest = new ServletWebRequest(request, response);
  5. try {
  6. // 构造调用 handlerMethod 所要使用的数据绑定器工厂
  7. WebDataBinderFactory binderFactory = getDataBinderFactory(handlerMethod);
  8. // 构造调用 handlerMethod 所要使用的数据模型工厂
  9. ModelFactory modelFactory = getModelFactory(handlerMethod, binderFactory);
  10. // 省略无关代码 ...
  11. }
  12. }

到此为止,基本上可以看到,通过@ControllerAdvice注解的bean组件所定义的@ModelAttribute/@InitBinder方法,或者RequestBodyAdvice/ResponseBodyAdvice,是如何被RequestMappingHandlerAdapter提取和使用的了。虽然并未深入到更细微的组件研究它们最终的使用,不过结合这些组件命名以及这些更深一层的使用者组件的名称,即便是猜测,也不难理解猜到它们如何被使用了。
关于@ControllerAdvice@ExceptionHandler这一组合,在上面提到的RequestMappingHandlerAdapter逻辑中,并未涉及到。那如果使用了这种组合,又会是怎样一种工作机制呢 ?事实上,@ControllerAdvice@ExceptionHandler这一组合所做的定义,会被ExceptionHandlerExceptionResolver消费使用。