Class SockJsHttpRequestHandler
- All Implemented Interfaces:
Aware
,Lifecycle
,ServletContextAware
,CorsConfigurationSource
,HttpRequestHandler
HttpRequestHandler
that allows mapping a SockJsService
to requests
in a Servlet container.- Since:
- 4.0
- Author:
- Rossen Stoyanchev, Sebastien Deleuze
-
Constructor Summary
ConstructorDescriptionSockJsHttpRequestHandler
(SockJsService sockJsService, WebSocketHandler webSocketHandler) Create a new SockJsHttpRequestHandler. -
Method Summary
Modifier and TypeMethodDescriptiongetCorsConfiguration
(HttpServletRequest request) Return aCorsConfiguration
based on the incoming request.Return theSockJsService
.Return theWebSocketHandler
.void
handleRequest
(HttpServletRequest servletRequest, HttpServletResponse servletResponse) Process the given request, generating a response.boolean
Check whether this component is currently running.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
-
SockJsHttpRequestHandler
Create a new SockJsHttpRequestHandler.- Parameters:
sockJsService
- the SockJS servicewebSocketHandler
- the websocket handler
-
-
Method Details
-
getSockJsService
Return theSockJsService
. -
getWebSocketHandler
Return theWebSocketHandler
. -
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
-
getCorsConfiguration
Description copied from interface:CorsConfigurationSource
Return aCorsConfiguration
based on the incoming request.- Specified by:
getCorsConfiguration
in interfaceCorsConfigurationSource
- Returns:
- the associated
CorsConfiguration
, ornull
if none
-