Uses of Interface
org.springframework.web.HttpRequestHandler
Packages that use HttpRequestHandler Package Description org.springframework.remoting.caucho This package provides remoting classes for Caucho's Hessian protocol: a proxy factory for accessing Hessian services, and an exporter for making beans available to Hessian clients.org.springframework.remoting.httpinvoker Remoting classes for transparent Java-to-Java remoting via HTTP invokers.org.springframework.web.servlet.resource Support classes for serving static resources.org.springframework.web.socket.config.annotation Support for annotation-based WebSocket setup in configuration classes.org.springframework.web.socket.server.support Server-side support classes including container-specific strategies for upgrading a request.org.springframework.web.socket.sockjs.support Support classes for SockJS including anAbstractSockJsServiceimplementation.Uses of HttpRequestHandler in org.springframework.remoting.caucho
Classes in org.springframework.remoting.caucho that implement HttpRequestHandler Modifier and Type Class Description classHessianServiceExporterServlet-API-based HTTP request handler that exports the specified service bean as Hessian service endpoint, accessible via a Hessian proxy.Uses of HttpRequestHandler in org.springframework.remoting.httpinvoker
Classes in org.springframework.remoting.httpinvoker that implement HttpRequestHandler Modifier and Type Class Description classHttpInvokerServiceExporterServlet-API-based HTTP request handler that exports the specified service bean as HTTP invoker service endpoint, accessible via an HTTP invoker proxy.Uses of HttpRequestHandler in org.springframework.web.servlet.resource
Classes in org.springframework.web.servlet.resource that implement HttpRequestHandler Modifier and Type Class Description classDefaultServletHttpRequestHandlerAnHttpRequestHandlerfor serving static files using the Servlet container's "default" Servlet.classResourceHttpRequestHandlerHttpRequestHandlerthat 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.annotation
Methods in org.springframework.web.socket.config.annotation that return types with arguments of type HttpRequestHandler Modifier and Type Method Description protected MultiValueMap<HttpRequestHandler,String>ServletWebSocketHandlerRegistration. createMappings()MultiValueMap<HttpRequestHandler,String>WebMvcStompWebSocketEndpointRegistration. getMappings()Method parameters in org.springframework.web.socket.config.annotation with type arguments of type HttpRequestHandler Modifier and Type Method Description protected 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.support
Classes in org.springframework.web.socket.server.support that implement HttpRequestHandler Modifier and Type Class Description classWebSocketHttpRequestHandlerAHttpRequestHandlerfor processing WebSocket handshake requests.Uses of HttpRequestHandler in org.springframework.web.socket.sockjs.support
Classes in org.springframework.web.socket.sockjs.support that implement HttpRequestHandler Modifier and Type Class Description classSockJsHttpRequestHandlerAnHttpRequestHandlerthat allows mapping aSockJsServiceto requests in a Servlet container.