Uses of Interface
org.springframework.web.servlet.handler.MatchableHandlerMapping
Package
Description
Provides standard HandlerMapping implementations,
including abstract base classes for custom implementations.
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation
package.Server-side support classes including container-specific strategies
for upgrading a request.
-
Uses of MatchableHandlerMapping in org.springframework.web.servlet.handler
Modifier and TypeClassDescriptionclass
Abstract implementation of theHandlerMapping
interface, detecting URL mappings for handler beans through introspection of all defined beans in the application context.class
Abstract base class for URL-mappedHandlerMapping
implementations.class
Implementation of theHandlerMapping
interface that maps from URLs to beans with names that start with a slash ("/"), similar to how Struts maps URLs to action names.class
Implementation of theHandlerMapping
interface that maps from URLs to request handler beans.Modifier and TypeMethodDescriptionHandlerMappingIntrospector.CachedResult.getHandlerMapping()
HandlerMappingIntrospector.getMatchableHandlerMapping
(HttpServletRequest request) Find theHandlerMapping
that would handle the given request and return aMatchableHandlerMapping
to use for path matching. -
Uses of MatchableHandlerMapping in org.springframework.web.servlet.mvc.method.annotation
Modifier and TypeClassDescriptionclass
CreatesRequestMappingInfo
instances from type and method-level@RequestMapping
annotations in@Controller
classes. -
Uses of MatchableHandlerMapping in org.springframework.web.socket.server.support
Modifier and TypeClassDescriptionclass
Extension ofSimpleUrlHandlerMapping
with support for more precise mapping of WebSocket handshake requests to handlers of typeWebSocketHttpRequestHandler
.