Uses of Interface
org.springframework.web.reactive.HandlerMapping
Packages that use HandlerMapping Package Description org.springframework.web.reactive Top-level package for thespring-webfluxmodule that containsDispatcherHandler, the main entry point for WebFlux server endpoint processing including key contracts used to map requests to handlers, invoke them, and process the result.org.springframework.web.reactive.config Spring WebFlux configuration infrastructure.org.springframework.web.reactive.function.server.support Classes supporting theorg.springframework.web.reactive.function.serverpackage.org.springframework.web.reactive.handler Provides HandlerMapping implementations including abstract base classes.org.springframework.web.reactive.result.method Infrastructure for handler method processing.org.springframework.web.reactive.result.method.annotation Infrastructure for annotation-based handler method processing.Uses of HandlerMapping in org.springframework.web.reactive
Methods in org.springframework.web.reactive that return types with arguments of type HandlerMapping Modifier and Type Method Description List<HandlerMapping>DispatcherHandler. getHandlerMappings()Uses of HandlerMapping in org.springframework.web.reactive.config
Methods in org.springframework.web.reactive.config that return HandlerMapping Modifier and Type Method Description HandlerMappingWebFluxConfigurationSupport. resourceHandlerMapping(ResourceUrlProvider resourceUrlProvider)Return a handler mapping ordered at Integer.MAX_VALUE-1 with mapped resource handlers.Uses of HandlerMapping in org.springframework.web.reactive.function.server.support
Classes in org.springframework.web.reactive.function.server.support that implement HandlerMapping Modifier and Type Class Description classRouterFunctionMappingHandlerMappingimplementation that supportsRouterFunctions.Uses of HandlerMapping in org.springframework.web.reactive.handler
Classes in org.springframework.web.reactive.handler that implement HandlerMapping Modifier and Type Class Description classAbstractHandlerMappingAbstract base class forHandlerMappingimplementations.classAbstractUrlHandlerMappingAbstract base class for URL-mappedHandlerMappingimplementations.classSimpleUrlHandlerMappingImplementation of theHandlerMappinginterface to map from URLs to request handler beans.Uses of HandlerMapping in org.springframework.web.reactive.result.method
Classes in org.springframework.web.reactive.result.method that implement HandlerMapping Modifier and Type Class Description classAbstractHandlerMethodMapping<T>Abstract base class forHandlerMappingimplementations that define a mapping between a request and aHandlerMethod.classRequestMappingInfoHandlerMappingAbstract base class for classes for whichRequestMappingInfodefines the mapping between a request and a handler method.Uses of HandlerMapping in org.springframework.web.reactive.result.method.annotation
Classes in org.springframework.web.reactive.result.method.annotation that implement HandlerMapping Modifier and Type Class Description classRequestMappingHandlerMappingAn extension ofRequestMappingInfoHandlerMappingthat createsRequestMappingInfoinstances from class-level and method-level@RequestMappingannotations.