Class WebSocketHttpRequestHandler
- All Implemented Interfaces:
- Aware,- Lifecycle,- ServletContextAware,- HttpRequestHandler
HttpRequestHandler for processing WebSocket handshake requests.
 This is the main class to use when configuring a server WebSocket at a specific URL.
 It is a very thin wrapper around a WebSocketHandler and a HandshakeHandler,
 also adapting the HttpServletRequest and HttpServletResponse to
 ServerHttpRequest and ServerHttpResponse, respectively.
- Since:
- 4.0
- Author:
- Rossen Stoyanchev
- 
Constructor SummaryConstructorsConstructorDescriptionWebSocketHttpRequestHandler(WebSocketHandler wsHandler) WebSocketHttpRequestHandler(WebSocketHandler wsHandler, HandshakeHandler handshakeHandler) 
- 
Method SummaryModifier and TypeMethodDescriptionprotected WebSocketHandlerdecorate(WebSocketHandler handler) Decorate theWebSocketHandlerpassed into the constructor.Return the HandshakeHandler.Return the configured WebSocket handshake request interceptors.Return the WebSocketHandler.voidhandleRequest(HttpServletRequest servletRequest, HttpServletResponse servletResponse) Process the given request, generating a response.booleanCheck whether this component is currently running.voidsetHandshakeInterceptors(List<HandshakeInterceptor> interceptors) Configure one or more WebSocket handshake request interceptors.voidsetServletContext(ServletContext servletContext) Set theServletContextthat this object runs in.voidstart()Start this component.voidstop()Stop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method.
- 
Constructor Details- 
WebSocketHttpRequestHandler
- 
WebSocketHttpRequestHandler
 
- 
- 
Method Details- 
decorateDecorate theWebSocketHandlerpassed into the constructor.By default, LoggingWebSocketHandlerDecoratorandExceptionWebSocketHandlerDecoratorare added.- Since:
- 5.2.2
 
- 
getWebSocketHandlerReturn the WebSocketHandler.
- 
getHandshakeHandlerReturn the HandshakeHandler.
- 
setHandshakeInterceptorsConfigure one or more WebSocket handshake request interceptors.
- 
getHandshakeInterceptorsReturn the configured WebSocket handshake request interceptors.
- 
setServletContextDescription copied from interface:ServletContextAwareSet theServletContextthat this object runs in.Invoked after population of normal bean properties but before an init callback like InitializingBean's afterPropertiesSetor a custom init-method. Invoked after ApplicationContextAware'ssetApplicationContext.- Specified by:
- setServletContextin interface- ServletContextAware
- Parameters:
- servletContext- the ServletContext object to be used by this object
- See Also:
 
- 
startpublic void start()Description copied from interface:LifecycleStart this component.Should not throw an exception if the component is already running. In the case of a container, this will propagate the start signal to all components that apply. 
- 
stoppublic void stop()Description copied from interface:LifecycleStop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method. Consider implementingSmartLifecycleand itsstop(Runnable)variant when asynchronous stop behavior is necessary.Note that this stop notification is not guaranteed to come before destruction: On regular shutdown, Lifecyclebeans will first receive a stop notification before the general destruction callbacks are being propagated; however, on hot refresh during a context's lifetime or on aborted refresh attempts, a given bean's destroy method will be called without any consideration of stop signals upfront.Should not throw an exception if the component is not running (not started yet). In the case of a container, this will propagate the stop signal to all components that apply. 
- 
isRunningpublic boolean isRunning()Description copied from interface:LifecycleCheck whether this component is currently running.In the case of a container, this will return trueonly if all components that apply are currently running.
- 
handleRequestpublic void handleRequest(HttpServletRequest servletRequest, HttpServletResponse servletResponse) throws ServletException, IOException Description copied from interface:HttpRequestHandlerProcess the given request, generating a response.- Specified by:
- handleRequestin interface- HttpRequestHandler
- Parameters:
- servletRequest- current HTTP request
- servletResponse- current HTTP response
- Throws:
- ServletException- in case of general errors
- IOException- in case of I/O errors
 
 
-