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 Summary
ConstructorDescriptionWebSocketHttpRequestHandler
(WebSocketHandler wsHandler) WebSocketHttpRequestHandler
(WebSocketHandler wsHandler, HandshakeHandler handshakeHandler) -
Method Summary
Modifier and TypeMethodDescriptionprotected WebSocketHandler
decorate
(WebSocketHandler handler) Decorate theWebSocketHandler
passed into the constructor.Return the HandshakeHandler.Return the configured WebSocket handshake request interceptors.Return the WebSocketHandler.void
handleRequest
(HttpServletRequest servletRequest, HttpServletResponse servletResponse) Process the given request, generating a response.boolean
Check whether this component is currently running.void
setHandshakeInterceptors
(List<HandshakeInterceptor> interceptors) Configure one or more WebSocket handshake request interceptors.void
setServletContext
(ServletContext servletContext) Set theServletContext
that this object runs in.void
start()
Start this component.void
stop()
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
-
decorate
Decorate theWebSocketHandler
passed into the constructor.By default,
LoggingWebSocketHandlerDecorator
andExceptionWebSocketHandlerDecorator
are added.- Since:
- 5.2.2
-
getWebSocketHandler
Return the WebSocketHandler. -
getHandshakeHandler
Return the HandshakeHandler. -
setHandshakeInterceptors
Configure one or more WebSocket handshake request interceptors. -
getHandshakeInterceptors
Return the configured WebSocket handshake request interceptors. -
setServletContext
Description copied from interface:ServletContextAware
Set theServletContext
that this object runs in.Invoked after population of normal bean properties but before an init callback like InitializingBean's
afterPropertiesSet
or a custom init-method. Invoked after ApplicationContextAware'ssetApplicationContext
.- Specified by:
setServletContext
in interfaceServletContextAware
- Parameters:
servletContext
- the ServletContext object to be used by this object- See Also:
-
start
public void start()Description copied from interface:Lifecycle
Start 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.
-
stop
public void stop()Description copied from interface:Lifecycle
Stop this component, typically in a synchronous fashion, such that the component is fully stopped upon return of this method. Consider implementingSmartLifecycle
and itsstop(Runnable)
variant when asynchronous stop behavior is necessary.Note that this stop notification is not guaranteed to come before destruction: On regular shutdown,
Lifecycle
beans 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.
-
isRunning
public boolean isRunning()Description copied from interface:Lifecycle
Check whether this component is currently running.In the case of a container, this will return
true
only if all components that apply are currently running. -
handleRequest
public void handleRequest(HttpServletRequest servletRequest, HttpServletResponse servletResponse) throws ServletException, IOException Description copied from interface:HttpRequestHandler
Process the given request, generating a response.- Specified by:
handleRequest
in interfaceHttpRequestHandler
- Parameters:
servletRequest
- current HTTP requestservletResponse
- current HTTP response- Throws:
ServletException
- in case of general errorsIOException
- in case of I/O errors
-