Uses of Class
org.springframework.web.servlet.handler.AbstractHandlerMapping
Package
Description
Annotation-based setup for Spring MVC.
Classes supporting the
org.springframework.web.servlet.function
package.Provides standard HandlerMapping implementations,
including abstract base classes for custom implementations.
Servlet-based infrastructure for handler method processing,
building on the
org.springframework.web.method
package.MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation
package.Support for annotation-based WebSocket setup in configuration classes.
Server-side support classes including container-specific strategies
for upgrading a request.
-
Uses of AbstractHandlerMapping in org.springframework.web.servlet.config.annotation
Modifier and TypeMethodDescriptionprotected AbstractHandlerMapping
ResourceHandlerRegistry.getHandlerMapping()
Return a handler mapping with the mapped resource handlers; ornull
in case of no registrations. -
Uses of AbstractHandlerMapping in org.springframework.web.servlet.function.support
Modifier and TypeClassDescriptionclass
HandlerMapping
implementation that supportsRouterFunctions
. -
Uses of AbstractHandlerMapping 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 forHandlerMapping
implementations that define a mapping between a request and aHandlerMethod
.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. -
Uses of AbstractHandlerMapping in org.springframework.web.servlet.mvc.method
Modifier and TypeClassDescriptionclass
Abstract base class for classes for whichRequestMappingInfo
defines the mapping between a request and a handler method. -
Uses of AbstractHandlerMapping in org.springframework.web.servlet.mvc.method.annotation
Modifier and TypeClassDescriptionclass
CreatesRequestMappingInfo
instances from type-level and method-level@RequestMapping
and@HttpExchange
annotations in@Controller
classes. -
Uses of AbstractHandlerMapping in org.springframework.web.socket.config.annotation
Modifier and TypeMethodDescriptionServletWebSocketHandlerRegistry.getHandlerMapping()
WebMvcStompEndpointRegistry.getHandlerMapping()
Return a handler mapping with the mapped ViewControllers. -
Uses of AbstractHandlerMapping 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
.