Uses of Interface
org.springframework.web.HttpRequestHandler
Packages that use HttpRequestHandler
Package
Description
Support classes for serving static resources.
Support for annotation-based WebSocket setup in configuration classes.
Server-side support classes including container-specific strategies
for upgrading a request.
Support classes for SockJS including an
AbstractSockJsService
implementation.- 
Uses of HttpRequestHandler in org.springframework.web.servlet.resourceClasses in org.springframework.web.servlet.resource that implement HttpRequestHandlerModifier and TypeClassDescriptionclassAnHttpRequestHandlerfor serving static files using the Servlet container's "default" Servlet.classHttpRequestHandlerthat serves static resources in an optimized way according to the guidelines of Page Speed, YSlow, etc.
- 
Uses of HttpRequestHandler in org.springframework.web.socket.config.annotationSubclasses with type arguments of type HttpRequestHandler in org.springframework.web.socket.config.annotationModifier and TypeClassDescriptionclassA helper class for configuringWebSocketHandlerrequest handling including SockJS fallback options.Methods in org.springframework.web.socket.config.annotation that return types with arguments of type HttpRequestHandlerModifier and TypeMethodDescriptionprotected MultiValueMap<HttpRequestHandler, String> ServletWebSocketHandlerRegistration.createMappings()final MultiValueMap<HttpRequestHandler, String> WebMvcStompWebSocketEndpointRegistration.getMappings()Method parameters in org.springframework.web.socket.config.annotation with type arguments of type HttpRequestHandlerModifier and TypeMethodDescriptionprotected voidServletWebSocketHandlerRegistration.addSockJsServiceMapping(MultiValueMap<HttpRequestHandler, String> mappings, SockJsService sockJsService, WebSocketHandler handler, String pathPattern) protected voidServletWebSocketHandlerRegistration.addWebSocketHandlerMapping(MultiValueMap<HttpRequestHandler, String> mappings, WebSocketHandler webSocketHandler, HandshakeHandler handshakeHandler, HandshakeInterceptor[] interceptors, String path) 
- 
Uses of HttpRequestHandler in org.springframework.web.socket.server.supportClasses in org.springframework.web.socket.server.support that implement HttpRequestHandlerModifier and TypeClassDescriptionclassAHttpRequestHandlerfor processing WebSocket handshake requests.
- 
Uses of HttpRequestHandler in org.springframework.web.socket.sockjs.supportClasses in org.springframework.web.socket.sockjs.support that implement HttpRequestHandlerModifier and TypeClassDescriptionclassAnHttpRequestHandlerthat allows mapping aSockJsServiceto requests in a Servlet container.