Class AbstractHandlerMethodMapping<T>

    • Method Detail

      • setDetectHandlerMethodsInAncestorContexts

        public void setDetectHandlerMethodsInAncestorContexts​(boolean detectHandlerMethodsInAncestorContexts)
        Whether to detect handler methods in beans in ancestor ApplicationContexts.

        Default is "false": Only beans in the current ApplicationContext are considered, i.e. only in the context that this HandlerMapping itself is defined in (typically the current DispatcherServlet's context).

        Switch this flag on to detect handler beans in ancestor contexts (typically the Spring root WebApplicationContext) as well.

      • setHandlerMethodMappingNamingStrategy

        public void setHandlerMethodMappingNamingStrategy​(HandlerMethodMappingNamingStrategy<T> namingStrategy)
        Configure the naming strategy to use for assigning a default name to every mapped handler method.

        The default naming strategy is based on the capital letters of the class name followed by "#" and then the method name, e.g. "TC#getFoo" for a class named TestController with method getFoo.

      • registerMapping

        public void registerMapping​(T mapping,
                                    Object handler,
                                    Method method)
        Register the given mapping.

        This method may be invoked at runtime after initialization has completed.

        Parameters:
        mapping - the mapping for the handler method
        handler - the handler
        method - the method
      • unregisterMapping

        public void unregisterMapping​(T mapping)
        Un-register the given mapping.

        This method may be invoked at runtime after initialization has completed.

        Parameters:
        mapping - the mapping to unregister
      • detectHandlerMethods

        protected void detectHandlerMethods​(Object handler)
        Look for handler methods in a handler.
        Parameters:
        handler - the bean name of a handler or a handler instance
      • registerHandlerMethod

        protected void registerHandlerMethod​(Object handler,
                                             Method method,
                                             T mapping)
        Register a handler method and its unique mapping. Invoked at startup for each detected handler method.
        Parameters:
        handler - the bean name of the handler or the handler instance
        method - the method to register
        mapping - the mapping conditions associated with the handler method
        Throws:
        IllegalStateException - if another method was already registered under the same mapping
      • createHandlerMethod

        protected HandlerMethod createHandlerMethod​(Object handler,
                                                    Method method)
        Create the HandlerMethod instance.
        Parameters:
        handler - either a bean name or an actual handler instance
        method - the target method
        Returns:
        the created HandlerMethod
      • handlerMethodsInitialized

        protected void handlerMethodsInitialized​(Map<T,​HandlerMethod> handlerMethods)
        Invoked after all handler methods have been detected.
        Parameters:
        handlerMethods - a read-only map with handler methods and mappings.
      • handleMatch

        protected void handleMatch​(T mapping,
                                   String lookupPath,
                                   HttpServletRequest request)
        Invoked when a matching mapping is found.
        Parameters:
        mapping - the matching mapping
        lookupPath - mapping lookup path within the current servlet mapping
        request - the current request
      • isHandler

        protected abstract boolean isHandler​(Class<?> beanType)
        Whether the given type is a handler with handler methods.
        Parameters:
        beanType - the type of the bean being checked
        Returns:
        "true" if this a handler type, "false" otherwise.
      • getMappingForMethod

        protected abstract T getMappingForMethod​(Method method,
                                                 Class<?> handlerType)
        Provide the mapping for a handler method. A method for which no mapping can be provided is not a handler method.
        Parameters:
        method - the method to provide a mapping for
        handlerType - the handler type, possibly a sub-type of the method's declaring class
        Returns:
        the mapping, or null if the method is not mapped
      • getMatchingMapping

        protected abstract T getMatchingMapping​(T mapping,
                                                HttpServletRequest request)
        Check if a mapping matches the current request and return a (potentially new) mapping with conditions relevant to the current request.
        Parameters:
        mapping - the mapping to get a match for
        request - the current HTTP servlet request
        Returns:
        the match, or null if the mapping doesn't match
      • getMappingComparator

        protected abstract Comparator<TgetMappingComparator​(HttpServletRequest request)
        Return a comparator for sorting matching mappings. The returned comparator should sort 'better' matches higher.
        Parameters:
        request - the current request
        Returns:
        the comparator (never null)