Uses of Interface
org.springframework.web.socket.sockjs.SockJsService
Package
Description
Support for annotation-based WebSocket setup in configuration classes.
Support classes for SockJS including an
AbstractSockJsService
implementation.Server-side support for SockJS transports including
TransportHandler
implementations
for processing incoming requests, their
session
counterparts for sending messages over the various transports, and
DefaultSockJsService
.TransportHandler
implementation classes as well as a concrete
SockJsService
.-
Uses of SockJsService in org.springframework.web.socket.config.annotation
Modifier and TypeMethodDescriptionprotected SockJsService
SockJsServiceRegistration.getSockJsService()
Modifier and TypeMethodDescriptionprotected abstract void
AbstractWebSocketHandlerRegistration.addSockJsServiceMapping
(M mappings, SockJsService sockJsService, WebSocketHandler handler, String pathPattern) protected void
ServletWebSocketHandlerRegistration.addSockJsServiceMapping
(MultiValueMap<HttpRequestHandler, String> mappings, SockJsService sockJsService, WebSocketHandler handler, String pathPattern) -
Uses of SockJsService in org.springframework.web.socket.sockjs.support
Modifier and TypeClassDescriptionclass
An abstract base class forSockJsService
implementations that provides SockJS path resolution and handling of static SockJS requests (for example, "/info", "/iframe.html", etc).Modifier and TypeMethodDescriptionSockJsHttpRequestHandler.getSockJsService()
Return theSockJsService
.ModifierConstructorDescriptionSockJsHttpRequestHandler
(SockJsService sockJsService, WebSocketHandler webSocketHandler) Create a new SockJsHttpRequestHandler. -
Uses of SockJsService in org.springframework.web.socket.sockjs.transport
Modifier and TypeClassDescriptionclass
A basic implementation ofSockJsService
with support for SPI-based transport handling and session management. -
Uses of SockJsService in org.springframework.web.socket.sockjs.transport.handler
Modifier and TypeClassDescriptionclass
A default implementation ofSockJsService
with all defaultTransportHandler
implementations pre-registered.