HandlerAdapter字面上的意思就是处理适配器,它的作用用一句话概括就是调用具体的方法对用户发来的请求来进行处理。当handlerMapping获取到执行请求的controller时,DispatcherServlte会根据controller对应的controller类型来调用相应的HandlerAdapter来进行处理。

在贴源码之前先说一下HandlerAdapter处理的大体流程,这样就有一个大体的掌握。大体流程有三步:

1.DispatcherServlte会根据配置文件信息注册HandlerAdapter,如果在配置文件中没有配置,那么DispatcherServlte会获取HandlerAdapter的默认配置,如果是读取默认配置的话,DispatcherServlte会读取DispatcherServlte.properties文件,该文件中配置了三种HandlerAdapter:HttpRequestHandlerAdapter,SimpleControllerHandlerAdapter和AnnotationMethodHandlerAdapter。DispatcherServlte会将这三个HandlerAdapter对象存储到它的handlerAdapters这个集合属性中,这样就完成了HandlerAdapter的注册。

2.DispatcherServlte会根据handlerMapping传过来的controller与已经注册好了的HandlerAdapter一一匹配,看哪一种HandlerAdapter是支持该controller类型的,如果找到了其中一种HandlerAdapter是支持传过来的controller类型,那么该HandlerAdapter会调用自己的handle方法,handle方法运用java的反射机制执行controller的具体方法来获得ModelAndView,例如SimpleControllerHandlerAdapter是支持实现了controller接口的控制器,如果自己写的控制器实现了controller接口,那么SimpleControllerHandlerAdapter就会去执行自己写控制器中的具体方法来完成请求。

下面是我自己写的代码。

1.自己写的controller,就是我们自己写的控制器

  1. package com.wangbiao.springMVC;
  2. import javax.servlet.ServletContext;
  3. import javax.servlet.http.HttpServletRequest;
  4. import javax.servlet.http.HttpServletResponse;
  5. import org.springframework.web.servlet.ModelAndView;
  6. import org.springframework.web.servlet.mvc.multiaction.MultiActionController;
  7. public class HelloWorld extends  MultiActionController{
  8. public ModelAndView sayHelloWorld(HttpServletRequest request, HttpServletResponse response) {
  9. String param = request.getParameter("param");
  10. System.out.println("springMVC测试:helloWorld;"+param);
  11. ModelAndView mv = new ModelAndView();
  12. mv.addObject("content", "springMVC HelloWorld:"+param);
  13. mv.setViewName("springMVC/helloWorld");
  14. ServletContext ctx = this.getServletContext();
  15. return mv;
  16. }
  17. }

2.SpringMVC配置文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://www.springframework.org/schema/beans"
  4. xmlns:mvc="http://www.springframework.org/schema/mvc"
  5. xmlns:context="http://www.springframework.org/schema/context"
  6. xmlns:aop="http://www.springframework.org/schema/aop"
  7. xmlns:tx="http://www.springframework.org/schema/tx"
  8. xsi:schemaLocation="http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  10. http://www.springframework.org/schema/mvc
  11. http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
  12. http://www.springframework.org/schema/context
  13. http://www.springframework.org/schema/context/spring-context-3.0.xsd
  14. http://www.springframework.org/schema/aop
  15. http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
  16. http://www.springframework.org/schema/tx
  17. http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
  18. <!-- handlerMapping  -->
  19. <bean id="beanNameUrlMapping" class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"/>
  20. <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
  21. <property name="mappings">
  22. <props>
  23. <prop key="/springMVC.d">/HelloWorld</prop>
  24. </props>
  25. </property>
  26. </bean>
  27. <bean name="/HelloWorld" class="com.wangbiao.springMVC.HelloWorld">
  28. <property name="methodNameResolver">
  29. <ref local="methodNameResolver"/>
  30. </property>
  31. </bean>
  32. <!-- 在url中对应具体的方法,通过m后面带的参数来确定方法 -->
  33. <bean id="methodNameResolver" class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">
  34. <property name="paramName"><value>m</value></property>
  35. <property name="defaultMethodName"><value>execute</value></property>
  36. </bean>
  37. <!--视图解析器-->
  38. <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  39. <!-- webroot到一指定文件夹文件路径 -->
  40. <property name="prefix" value="/"/>
  41. <!-- 视图名称后缀  -->
  42. <property name="suffix" value=".jsp"/>
  43. </bean>
  44. </beans>

下面是源码

1.DispatcherServlet注册HandlerAdapter。DispatcherServlet的initHandlerAdapters方法,红色标记的部分是关键。由于在配置文件中没有对HandlerAdapter的相关配置,所以DispatcherServlet获取到的HandlerAdapter是三个默认的HandlerAdapter对象,分别是HttpRequestHandlerAdapter,SimpleControllerHandlerAdapter和AnnotationMethodHandlerAdapter,并将这三个对象存入handlerAdapter属性中去。

  1. private void initHandlerAdapters(ApplicationContext context) {
  2. this.handlerAdapters = null;
  3. if (this.detectAllHandlerAdapters) {
  4. // Find all HandlerAdapters in the ApplicationContext, including ancestor contexts.
  5. Map<String, HandlerAdapter> matchingBeans =
  6. BeanFactoryUtils.beansOfTypeIncludingAncestors(context, HandlerAdapter.class, true, false);
  7. if (!matchingBeans.isEmpty()) {
  8. this.handlerAdapters = new ArrayList<HandlerAdapter>(matchingBeans.values());
  9. // We keep HandlerAdapters in sorted order.
  10. OrderComparator.sort(this.handlerAdapters);
  11. }
  12. }
  13. else {
  14. try {
  15. HandlerAdapter ha = context.getBean(HANDLER_ADAPTER_BEAN_NAME, HandlerAdapter.class);
  16. this.handlerAdapters = Collections.singletonList(ha);
  17. }
  18. catch (NoSuchBeanDefinitionException ex) {
  19. // Ignore, we'll add a default HandlerAdapter later.
  20. }
  21. }
  22. // Ensure we have at least some HandlerAdapters, by registering
  23. // default HandlerAdapters if no other adapters are found.
  24. if (this.handlerAdapters == null) {
  25. this.handlerAdapters = getDefaultStrategies(context, HandlerAdapter.class);
  26. if (logger.isDebugEnabled()) {
  27. logger.debug("No HandlerAdapters found in servlet '" + getServletName() + "': using default");
  28. }
  29. }
  30. }

2.根据handlerMapping传过来的Handler对象与DispatcherServlet集合属性handlerAdapter中的HandlerAdapter一一匹配,如果有支持Handler对象的HandlerAdapter,那么HandlerAdapter就会调用自己的handle方法处理请求。

  1. protected void doDispatch(HttpServletRequest request, HttpServletResponse response) throws Exception {
  2. HttpServletRequest processedRequest = request;
  3. HandlerExecutionChain mappedHandler = null;
  4. int interceptorIndex = -1;
  5. try {
  6. ModelAndView mv;
  7. boolean errorView = false;
  8. try {
  9. processedRequest = checkMultipart(request);
  10. // Determine handler for the current request.
  11. mappedHandler = getHandler(processedRequest, false);
  12. if (mappedHandler == null || mappedHandler.getHandler() == null) {
  13. noHandlerFound(processedRequest, response);
  14. return;
  15. }
  16. // Determine handler adapter for the current request.
  17. HandlerAdapter ha = getHandlerAdapter(mappedHandler.getHandler());
  18. // Process last-modified header, if supported by the handler.
  19. String method = request.getMethod();
  20. boolean isGet = "GET".equals(method);
  21. if (isGet || "HEAD".equals(method)) {
  22. long lastModified = ha.getLastModified(request, mappedHandler.getHandler());
  23. if (logger.isDebugEnabled()) {
  24. String requestUri = urlPathHelper.getRequestUri(request);
  25. logger.debug("Last-Modified value for [" + requestUri + "] is: " + lastModified);
  26. }
  27. if (new ServletWebRequest(request, response).checkNotModified(lastModified) && isGet) {
  28. return;
  29. }
  30. }
  31. // Apply preHandle methods of registered interceptors.
  32. HandlerInterceptor[] interceptors = mappedHandler.getInterceptors();
  33. if (interceptors != null) {
  34. for (int i = 0; i < interceptors.length; i++) {
  35. HandlerInterceptor interceptor = interceptors[i];
  36. if (!interceptor.preHandle(processedRequest, response, mappedHandler.getHandler())) {
  37. triggerAfterCompletion(mappedHandler, interceptorIndex, processedRequest, response, null);
  38. return;
  39. }
  40. interceptorIndex = i;
  41. }
  42. }
  43. // Actually invoke the handler.
  44. mv = ha.handle(processedRequest, response, mappedHandler.getHandler());
  45. // Do we need view name translation?
  46. if (mv != null && !mv.hasView()) {
  47. mv.setViewName(getDefaultViewName(request));
  48. }
  49. // Apply postHandle methods of registered interceptors.
  50. if (interceptors != null) {
  51. for (int i = interceptors.length - 1; i >= 0; i--) {
  52. HandlerInterceptor interceptor = interceptors[i];
  53. interceptor.postHandle(processedRequest, response, mappedHandler.getHandler(), mv);
  54. }
  55. }
  56. }
  57. catch (ModelAndViewDefiningException ex) {
  58. logger.debug("ModelAndViewDefiningException encountered", ex);
  59. mv = ex.getModelAndView();
  60. }
  61. catch (Exception ex) {
  62. Object handler = (mappedHandler != null ? mappedHandler.getHandler() : null);
  63. mv = processHandlerException(processedRequest, response, handler, ex);
  64. errorView = (mv != null);
  65. }
  66. // Did the handler return a view to render?
  67. if (mv != null && !mv.wasCleared()) {
  68. render(mv, processedRequest, response);
  69. if (errorView) {
  70. WebUtils.clearErrorRequestAttributes(request);
  71. }
  72. }
  73. else {
  74. if (logger.isDebugEnabled()) {
  75. logger.debug("Null ModelAndView returned to DispatcherServlet with name '" + getServletName() +
  76. "': assuming HandlerAdapter completed request handling");
  77. }
  78. }
  79. // Trigger after-completion for successful outcome.
  80. triggerAfterCompletion(mappedHandler, interceptorIndex, processedRequest, response, null);
  81. }
  82. catch (Exception ex) {
  83. // Trigger after-completion for thrown exception.
  84. triggerAfterCompletion(mappedHandler, interceptorIndex, processedRequest, response, ex);
  85. throw ex;
  86. }
  87. catch (Error err) {
  88. ServletException ex = new NestedServletException("Handler processing failed", err);
  89. // Trigger after-completion for thrown exception.
  90. triggerAfterCompletion(mappedHandler, interceptorIndex, processedRequest, response, ex);
  91. throw ex;
  92. }
  93. finally {
  94. // Clean up any resources used by a multipart request.
  95. if (processedRequest != request) {
  96. cleanupMultipart(processedRequest);
  97. }
  98. }
  99. }

getHandlerAdapter方法

  1. protected HandlerAdapter getHandlerAdapter(Object handler) throws ServletException {
  2. for (HandlerAdapter ha : this.handlerAdapters) {
  3. if (logger.isTraceEnabled()) {
  4. logger.trace("Testing handler adapter [" + ha + "]");
  5. }
  6. if (ha.supports(handler)) {
  7. return ha;
  8. }
  9. }
  10. throw new ServletException("No adapter for handler [" + handler +
  11. "]: Does your handler implement a supported interface like Controller?");
  12. }

HandlerAdapter接口

  1. /*
  2. * Copyright 2002-2008 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. *      http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package org.springframework.web.servlet;
  17. import javax.servlet.http.HttpServletRequest;
  18. import javax.servlet.http.HttpServletResponse;
  19. /**
  20. * MVC framework SPI interface, allowing parameterization of core MVC workflow.
  21. *
  22. * <p>Interface that must be implemented for each handler type to handle a request.
  23. * This interface is used to allow the {@link DispatcherServlet} to be indefinitely
  24. * extensible. The DispatcherServlet accesses all installed handlers through this
  25. * interface, meaning that it does not contain code specific to any handler type.
  26. *
  27. * <p>Note that a handler can be of type <code>Object</code>. This is to enable
  28. * handlers from other frameworks to be integrated with this framework without
  29. * custom coding, as well as to allow for annotation handler objects that do
  30. * not obey any specific Java interface.
  31. *
  32. * <p>This interface is not intended for application developers. It is available
  33. * to handlers who want to develop their own web workflow.
  34. *
  35. * <p>Note: HandlerAdaptger implementators may implement the
  36. * {@link org.springframework.core.Ordered} interface to be able to specify a
  37. * sorting order (and thus a priority) for getting applied by DispatcherServlet.
  38. * Non-Ordered instances get treated as lowest priority.
  39. *
  40. * @author Rod Johnson
  41. * @author Juergen Hoeller
  42. * @see org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter
  43. * @see org.springframework.web.servlet.handler.SimpleServletHandlerAdapter
  44. */
  45. public interface HandlerAdapter {
  46. /**
  47. * Given a handler instance, return whether or not this HandlerAdapter can
  48. * support it. Typical HandlerAdapters will base the decision on the handler
  49. * type. HandlerAdapters will usually only support one handler type each.
  50. * <p>A typical implementation:
  51. * <p><code>
  52. * return (handler instanceof MyHandler);
  53. * </code>
  54. * @param handler handler object to check
  55. * @return whether or not this object can use the given handler
  56. */
  57. boolean supports(Object handler);
  58. /**
  59. * Use the given handler to handle this request.
  60. * The workflow that is required may vary widely.
  61. * @param request current HTTP request
  62. * @param response current HTTP response
  63. * @param handler handler to use. This object must have previously been passed
  64. * to the <code>supports</code> method of this interface, which must have
  65. * returned <code>true</code>.
  66. * @throws Exception in case of errors
  67. * @return ModelAndView object with the name of the view and the required
  68. * model data, or <code>null</code> if the request has been handled directly
  69. */
  70. ModelAndView handle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception;
  71. /**
  72. * Same contract as for HttpServlet's <code>getLastModified</code> method.
  73. * Can simply return -1 if there's no support in the handler class.
  74. * @param request current HTTP request
  75. * @param handler handler to use
  76. * @return the lastModified value for the given handler
  77. * @see javax.servlet.http.HttpServlet#getLastModified
  78. * @see org.springframework.web.servlet.mvc.LastModified#getLastModified
  79. */
  80. long getLastModified(HttpServletRequest request, Object handler);
  81. }

再来看一下自己写的控制器HelloWorld继承了MultiActionController。MultiActionController又继承了AbstractController,AbstractController实现了Controller。这样就看DispatcherServlet属性中的HandlerApater谁支持Controller类型的处理器了。在运行的过程中发现SimpleControllerHandlerAdapter是支持Controller类型的控制器的。
来看一下SimpleControllerHandlerAdapter的代码

  1. public class SimpleControllerHandlerAdapter implements HandlerAdapter {
  2. public boolean supports(Object handler) {
  3. return (handler instanceof Controller);
  4. }
  5. public ModelAndView handle(HttpServletRequest request, HttpServletResponse response, Object handler)
  6. throws Exception {
  7. return ((Controller) handler).handleRequest(request, response);
  8. }
  9. public long getLastModified(HttpServletRequest request, Object handler) {
  10. if (handler instanceof LastModified) {
  11. return ((LastModified) handler).getLastModified(request);
  12. }
  13. return -1L;
  14. }
  15. }

再看一下Controller源码,Controller接口只有一个handleRequest方法

  1. public interface Controller {
  2. /**
  3. * Process the request and return a ModelAndView object which the DispatcherServlet
  4. * will render. A <code>null</code> return value is not an error: It indicates that
  5. * this object completed request processing itself, thus there is no ModelAndView
  6. * to render.
  7. * @param request current HTTP request
  8. * @param response current HTTP response
  9. * @return a ModelAndView to render, or <code>null</code> if handled directly
  10. * @throws Exception in case of errors
  11. */
  12. ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception;
  13. }

再看看实现了Controller接口的AbstractController类

  1. public abstract class AbstractController extends WebContentGenerator implements Controller {
  2. private boolean synchronizeOnSession = false;
  3. /**
  4. * Set if controller execution should be synchronized on the session,
  5. * to serialize parallel invocations from the same client.
  6. * <p>More specifically, the execution of the <code>handleRequestInternal</code>
  7. * method will get synchronized if this flag is "true". The best available
  8. * session mutex will be used for the synchronization; ideally, this will
  9. * be a mutex exposed by HttpSessionMutexListener.
  10. * <p>The session mutex is guaranteed to be the same object during
  11. * the entire lifetime of the session, available under the key defined
  12. * by the <code>SESSION_MUTEX_ATTRIBUTE</code> constant. It serves as a
  13. * safe reference to synchronize on for locking on the current session.
  14. * <p>In many cases, the HttpSession reference itself is a safe mutex
  15. * as well, since it will always be the same object reference for the
  16. * same active logical session. However, this is not guaranteed across
  17. * different servlet containers; the only 100% safe way is a session mutex.
  18. * @see org.springframework.web.servlet.mvc.AbstractController#handleRequestInternal
  19. * @see org.springframework.web.util.HttpSessionMutexListener
  20. * @see org.springframework.web.util.WebUtils#getSessionMutex(javax.servlet.http.HttpSession)
  21. */
  22. public final void setSynchronizeOnSession(boolean synchronizeOnSession) {
  23. this.synchronizeOnSession = synchronizeOnSession;
  24. }
  25. /**
  26. * Return whether controller execution should be synchronized on the session.
  27. */
  28. public final boolean isSynchronizeOnSession() {
  29. return this.synchronizeOnSession;
  30. }
  31. public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response)
  32. throws Exception {
  33. // Delegate to WebContentGenerator for checking and preparing.
  34. checkAndPrepare(request, response, this instanceof LastModified);
  35. // Execute handleRequestInternal in synchronized block if required.
  36. if (this.synchronizeOnSession) {
  37. HttpSession session = request.getSession(false);
  38. if (session != null) {
  39. Object mutex = WebUtils.getSessionMutex(session);
  40. synchronized (mutex) {
  41. return handleRequestInternal(request, response);
  42. }
  43. }
  44. }
  45. return handleRequestInternal(request, response);
  46. }
  47. /**
  48. * Template method. Subclasses must implement this.
  49. * The contract is the same as for <code>handleRequest</code>.
  50. * @see #handleRequest
  51. */
  52. protected abstract ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
  53. throws Exception;
  54. }

再看一下继承了AbstractController的MultiActionController,MultiActionController中有对AbstractController的handleRequestInternal的实现

  1. protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
  2. throws Exception {
  3. try {
  4. String methodName = this.methodNameResolver.getHandlerMethodName(request);
  5. return invokeNamedMethod(methodName, request, response);
  6. }
  7. catch (NoSuchRequestHandlingMethodException ex) {
  8. return handleNoSuchRequestHandlingMethod(ex, request, response);
  9. }
  10. }

可以看出在MultiActionController的handleRequestInternal方法中分为两步,第一步是找寻执行该请求的方法名,第二步是调用invokeNamedMethod方法。
invokeNamedMethod方法源码

  1. protected final ModelAndView invokeNamedMethod(
  2. String methodName, HttpServletRequest request, HttpServletResponse response) throws Exception {
  3. Method method = this.handlerMethodMap.get(methodName);
  4. if (method == null) {
  5. throw new NoSuchRequestHandlingMethodException(methodName, getClass());
  6. }
  7. try {
  8. Class[] paramTypes = method.getParameterTypes();
  9. List<Object> params = new ArrayList<Object>(4);
  10. params.add(request);
  11. params.add(response);
  12. if (paramTypes.length >= 3 && paramTypes[2].equals(HttpSession.class)) {
  13. HttpSession session = request.getSession(false);
  14. if (session == null) {
  15. throw new HttpSessionRequiredException(
  16. "Pre-existing session required for handler method '" + methodName + "'");
  17. }
  18. params.add(session);
  19. }
  20. // If last parameter isn't of HttpSession type, it's a command.
  21. if (paramTypes.length >= 3 &&
  22. !paramTypes[paramTypes.length - 1].equals(HttpSession.class)) {
  23. Object command = newCommandObject(paramTypes[paramTypes.length - 1]);
  24. params.add(command);
  25. bind(request, command);
  26. }
  27. //执行该方法
  28. Object returnValue = method.invoke(this.delegate, params.toArray(new Object[params.size()]));
  29. return massageReturnValueIfNecessary(returnValue);
  30. }
  31. catch (InvocationTargetException ex) {
  32. // The handler method threw an exception.
  33. return handleException(request, response, ex.getTargetException());
  34. }
  35. catch (Exception ex) {
  36. // The binding process threw an exception.
  37. return handleException(request, response, ex);
  38. }
  39. }

根据方法名在MultiActionController的方法集合属性handlerMethodMap中寻找对应的方法对象,然后执行该方法对象,执行该方法对象后获得一个object的返回值,通过massageReturnValueIfNecessary方法判断这个返回值的类型,如果这个值的返回类型是ModelAndView类型,就返回ModelAndView。到此我们找到响应请求的方法并执行获得了返回值。

虽然总体走完了,但是有两个地方还没有说,1如何根据用户发来的url请求来确定url中哪一段是执行该请求的方法名;2.确定方法名后是怎么找到该方法的。
MultiActionController中有一个构造函数,registerHandlerMethods(this.delegate);方法就是对我们所写的controller中的方法的注册。

  1. public MultiActionController() {
  2. this.delegate = this;
  3. registerHandlerMethods(this.delegate);
  4. // We'll accept no handler methods found here - a delegate might be set later on.
  5. }

registerHandlerMethods方法

this.delegate其实就是继承了MultiActionController的控制对象,比如HelloWorld继承了MultiActionController,那么传过来的就是HelloWorld对象,就会将HelloWorld对象中的所有方法放到MultiActionController的handlerMethodMap属性中去了。

  1. private void registerHandlerMethods(Object delegate) {
  2. this.handlerMethodMap.clear();
  3. this.lastModifiedMethodMap.clear();
  4. this.exceptionHandlerMap.clear();
  5. // Look at all methods in the subclass, trying to find
  6. // methods that are validators according to our criteria
  7. Method[] methods = delegate.getClass().getMethods();
  8. for (Method method : methods) {
  9. // We're looking for methods with given parameters.
  10. if (isExceptionHandlerMethod(method)) {
  11. registerExceptionHandlerMethod(method);
  12. }
  13. else if (isHandlerMethod(method)) {
  14. registerHandlerMethod(method);
  15. registerLastModifiedMethodIfExists(delegate, method);
  16. }
  17. }
  18. }

在配置文件中有这样一段代码

  1. <!-- 在url中对应具体的方法,通过m后面带的参数来确定方法 -->
  2. <bean id="methodNameResolver" class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">
  3. <property name="paramName"><value>m</value></property>
  4. <property name="defaultMethodName"><value>execute</value></property>
  5. </bean>

ParameterMethodNameResolver这个类的作用就是根据url链接中带的参数来确定执行该url的方法名是什么。在ioc容器初始ParameterMethodNameResolver的时候,容器会将“m”这个参数赋值给ParameterMethodNameResolver的属性paramName,然后ParameterMethodNameResolver会根据url中m后面跟的参数来获取方法名

  1. public String getHandlerMethodName(HttpServletRequest request) throws NoSuchRequestHandlingMethodException {
  2. String methodName = null;
  3. // Check parameter names where the very existence of each parameter
  4. // means that a method of the same name should be invoked, if any.
  5. if (this.methodParamNames != null) {
  6. for (String candidate : this.methodParamNames) {
  7. if (WebUtils.hasSubmitParameter(request, candidate)) {
  8. methodName = candidate;
  9. if (logger.isDebugEnabled()) {
  10. logger.debug("Determined handler method '" + methodName +
  11. "' based on existence of explicit request parameter of same name");
  12. }
  13. break;
  14. }
  15. }
  16. }
  17. // Check parameter whose value identifies the method to invoke, if any.
  18. if (methodName == null && this.paramName != null) {
  19. methodName = request.getParameter(this.paramName);
  20. if (methodName != null) {
  21. if (logger.isDebugEnabled()) {
  22. logger.debug("Determined handler method '" + methodName +
  23. "' based on value of request parameter '" + this.paramName + "'");
  24. }
  25. }
  26. }
  27. if (methodName != null && this.logicalMappings != null) {
  28. // Resolve logical name into real method name, if appropriate.
  29. String originalName = methodName;
  30. methodName = this.logicalMappings.getProperty(methodName, methodName);
  31. if (logger.isDebugEnabled()) {
  32. logger.debug("Resolved method name '" + originalName + "' to handler method '" + methodName + "'");
  33. }
  34. }
  35. if (methodName != null && !StringUtils.hasText(methodName)) {
  36. if (logger.isDebugEnabled()) {
  37. logger.debug("Method name '" + methodName + "' is empty: treating it as no method name found");
  38. }
  39. methodName = null;
  40. }
  41. if (methodName == null) {
  42. if (this.defaultMethodName != null) {
  43. // No specific method resolved: use default method.
  44. methodName = this.defaultMethodName;
  45. if (logger.isDebugEnabled()) {
  46. logger.debug("Falling back to default handler method '" + this.defaultMethodName + "'");
  47. }
  48. }
  49. else {
  50. // If resolution failed completely, throw an exception.
  51. throw new NoSuchRequestHandlingMethodException(request);
  52. }
  53. }
  54. return methodName;
  55. }

当找到了方法名后,就会去MultiActionController属性handlerMethodMap中根据方法名找方法对象。再执行这个方法就好了。

再来看看是如何从handlerMethodMap集合中找到方法并执行方法的

  1. protected ModelAndView handleRequestInternal(HttpServletRequest request, HttpServletResponse response)
  2. throws Exception {
  3. try {
  4. String methodName = this.methodNameResolver.getHandlerMethodName(request);
  5. return invokeNamedMethod(methodName, request, response);
  6. }
  7. catch (NoSuchRequestHandlingMethodException ex) {
  8. return handleNoSuchRequestHandlingMethod(ex, request, response);
  9. }
  10. }
  1. protected final ModelAndView invokeNamedMethod(
  2. String methodName, HttpServletRequest request, HttpServletResponse response) throws Exception {
  3. Method method = this.handlerMethodMap.get(methodName);
  4. if (method == null) {
  5. throw new NoSuchRequestHandlingMethodException(methodName, getClass());
  6. }
  7. try {
  8. Class[] paramTypes = method.getParameterTypes();
  9. List<Object> params = new ArrayList<Object>(4);
  10. params.add(request);
  11. params.add(response);
  12. if (paramTypes.length >= 3 && paramTypes[2].equals(HttpSession.class)) {
  13. HttpSession session = request.getSession(false);
  14. if (session == null) {
  15. throw new HttpSessionRequiredException(
  16. "Pre-existing session required for handler method '" + methodName + "'");
  17. }
  18. params.add(session);
  19. }
  20. // If last parameter isn't of HttpSession type, it's a command.
  21. if (paramTypes.length >= 3 &&
  22. !paramTypes[paramTypes.length - 1].equals(HttpSession.class)) {
  23. Object command = newCommandObject(paramTypes[paramTypes.length - 1]);
  24. params.add(command);
  25. bind(request, command);
  26. }
  27. Object returnValue = method.invoke(this.delegate, params.toArray(new Object[params.size()]));
  28. return massageReturnValueIfNecessary(returnValue);
  29. }
  30. catch (InvocationTargetException ex) {
  31. // The handler method threw an exception.
  32. return handleException(request, response, ex.getTargetException());
  33. }
  34. catch (Exception ex) {
  35. // The binding process threw an exception.
  36. return handleException(request, response, ex);
  37. }
  38. }

哎,本来是想春节之前将SpringMVC源码系列写完的,看是写不完了,还有ViewandResolve没有写,最近心境没有前一段时间平静,被外物所扰。2015年过的太平淡,感觉很重要的一年什么都没有留下,只能说很遗憾。在2016年一定要留下一些值得回味的东西,2016年不说要有多高大上,但一定要把基础打捞,框架什么的一定要很熟很熟。

HandlerAdapter,大家都叫它适配处理器,就是适配不同的处理器,将他们封装起来调用同一个借口方法,这样DispatcherServlet就只需要调用接口方法,而不需要在DispatcherServlet判断调用哪一个具体的HandlerAdapter的实现类了。
         当时看到自己项目里面的所有的处理器都是实现了MultiActionController的Controller,再去看MultiActionController的源码时,发现MultiActionController实现了Controller接口,Controller接口只有一个handleRequest方法,我想DispatcherServlet直接用Controller的handleRequest方法执行具体请求就行了,何必还要用HandlerAdapter将Controller封装起来,再在HandlerAdapter的handle方法里执行Controller的handleRequest方法呢,这不是多此一举?
        只怪自己目光短浅,由于用的是配置的方式来做项目的,而且平时自己写的Controller只继承了MultiActionController,以为Controller接口就是所有的处理器的接口,眼里就只有Controller了。
        今天再来看源码,发现处理器根本就不只有Controller这一种。还有HttpRequestHandler,Servlet等处理器。下面来介绍一下几种适配器对应的处理器以及这些处理器的作用\
        1. AnnotationMethodHandlerAdapter主要是适配注解类处理器,注解类处理器就是我们经常使用的@Controller的这类处理器
        2. HttpRequestHandlerAdapter主要是适配静态资源处理器,静态资源处理器就是实现了HttpRequestHandler接口的处理器,这类处理器的作用是处理通过SpringMVC来访问的静态资源的请求。        
        3.SimpleControllerHandlerAdapter是Controller处理适配器,适配实现了Controller接口或Controller接口子类的处理器,比如我们经常自己写的Controller来继承MultiActionController,那么自己写的这些Controller就会由SimpleControllerHandlerAdapter来适配
        4.SimpleServletHandlerAdapter是Servlet处理适配器,适配实现了Servlet接口或Servlet的子类的处理器,我们不仅可以在web.xml里面配置Servlet,其实也可以用SpringMVC来配置Servlet,不过这个适配器很少用到,而且SpringMVC默认的适配器没有他,默认的是前面的三种。

适配处理器当然用到了适配器模式。
        今天终于将这个问题弄懂了,只怪当初看源码的时候接触的太单一了,如果大家觉得有什么不妥的地方,欢迎大家拍砖

参考链接:https://blog.csdn.net/wangbiao007/article/details/50547020

SpringMVC之HandlerAdapter解析的更多相关文章

  1. SpringMVC源码解析- HandlerAdapter - ModelFactory(转)

    ModelFactory主要是两个职责: 1. 初始化model 2. 处理器执行后将modle中相应参数设置到SessionAttributes中 我们来看看具体的处理逻辑(直接充当分析目录): 1 ...

  2. SpringMVC源码解析- HandlerAdapter - ModelFactory

    ModelFactory主要是两个职责: 1. 初始化model 2. 处理器执行后将modle中相应参数设置到SessionAttributes中 我们来看看具体的处理逻辑(直接充当分析目录): 1 ...

  3. SpringMVC——说说视图解析器

    学习SpringMVC——说说视图解析器   各位前排的,后排的,都不要走,咱趁热打铁,就这一股劲我们今天来说说spring mvc的视图解析器(不要抢,都有位子~~~) 相信大家在昨天那篇如何获取请 ...

  4. springMVC源码解析--ViewResolver视图解析器执行(三)

    之前两篇博客springMVC源码分析--ViewResolver视图解析器(一)和springMVC源码解析--ViewResolverComposite视图解析器集合(二)中我们已经简单介绍了一些 ...

  5. SpringMVC 多视图解析器配置以及问题

    在SpringMVC模式当中可以通过如下配置来支持多视图解析 <!-- jsp jstl --> <bean id="JSPViewResolver" class ...

  6. SpringMVC源码分析6:SpringMVC的视图解析原理

    title: SpringMVC源码分析6:SpringMVC的视图解析原理 date: 2018-06-07 11:03:19 tags: - SpringMVC categories: - 后端 ...

  7. HandlerAdapter解析参数过程之HandlerMethodArgumentResolver

    在我们做Web开发的时候,会提交各种数据格式的请求,而我们的后台也会有相应的参数处理方式.SpringMVC就为我们提供了一系列的参数解析器,不管你是要获取Cookie中的值,Header中的值,JS ...

  8. SpringMVC源码解析 - HandlerAdapter - @SessionAttributes注解处理

    使用SpringMVC开发时,可以使用@SessionAttributes注解缓存信息.这样业务开发时,就不需要一次次手动操作session保存,读数据. @Controller @RequestMa ...

  9. SpringMVC源码解析- HandlerAdapter初始化

    HandlerAdapter初始化时,主要是进行注解解析器初始化注册;返回值处理类初始化;全局注解@ControllerAdvice内容读取并缓存. 目录: 注解解析器初始化注册:@ModelAttr ...

随机推荐

  1. centos7安装部署mysql5.7服务器

    因为自带源没有最新版的mysql,所以我们需要自己下载rpm包,先下载下面的rpm包源 https://repo.mysql.com//mysql57-community-release-el7-11 ...

  2. Full Schema Stitching with Apollo Server

    转自: https://tomasalabes.me/blog/nodejs/graphql/apollo/2018/09/18/schema-stitiching-apollo.html Full ...

  3. Bundle类解读

    1.Bundle bundle = Platform.getBundle("org.eclipse.ui.views"); Platform是eclipse平台运行时的核心类,它是 ...

  4. 在pypi上发布python包详细教程

    使用Python编程中Python的包安装非常方便,一般都是可以pip来安装搞定:pip install <package name>,我们自己写的python也可以发布在pypi上,很简 ...

  5. python3.7安装

    在Ubuntu系统带有原Python环境2.7,3.5,使用pyenv可以将其设置成最新的3.7.1,使用安装步骤如下:(防止丢失所以做了复制,复制来源:https://www.cnblogs.com ...

  6. Ambari安装常见问题

    参考自: http://blog.csdn.net/xingxc111/article/details/70667574 http://blog.csdn.net/xfg0218/article/de ...

  7. Linux下nohup日志输出过大问题解决方案

    转载自:http://blog.csdn.net/shawnhu007/article/details/50971084 最近在一hadoop测试集群运行一个spark streaming程序,然后使 ...

  8. 手机浏览器User-Agent信息

    ChormeMozilla/5.0 (Linux; Android 4.2.1; AMOI N828 Build/JOP40D) AppleWebKit/537.36 (KHTML, like Gec ...

  9. windows10中git-bash闪退的解决办法

    windows10中git-bash闪退的解决办法 出现错误详情 Windows10 64位专业版安装git .18之后出现 Git闪退,报错信息:bash: /dev/null: No such d ...

  10. Hiero_FnNukeShotExporter的解析与修改

    研究对象:Hiero中的FnNukeShotExporter脚本 研究目的:修改FnNukeShotExporter使得可以将多个TrackItem导入到一个.nk中   FnNukeShotExpo ...