See: Description
| Interface | Description |
|---|---|
| WebSocketConfigurer |
Defines callback methods to configure the WebSocket request handling
via
@EnableWebSocket. |
| WebSocketHandlerRegistration |
Provides methods for configuring a WebSocket handler.
|
| WebSocketHandlerRegistry |
Provides methods for configuring
WebSocketHandler request mappings. |
| Class | Description |
|---|---|
| AbstractWebSocketHandlerRegistration<M> |
Base class for
WebSocketHandlerRegistrations that gathers all the configuration
options but allows sub-classes to put together the actual HTTP request mappings. |
| DelegatingWebSocketConfiguration |
A variation of
WebSocketConfigurationSupport that detects implementations of
WebSocketConfigurer in Spring configuration and invokes them in order to
configure WebSocket request handling. |
| ServletWebSocketHandlerRegistration |
A helper class for configuring
WebSocketHandler request handling
including SockJS fallback options. |
| ServletWebSocketHandlerRegistry |
A
WebSocketHandlerRegistry that maps WebSocketHandlers to URLs for use
in a Servlet container. |
| SockJsServiceRegistration |
A helper class for configuring SockJS fallback options, typically used indirectly, in
conjunction with
@EnableWebSocket and
WebSocketConfigurer. |
| WebSocketConfigurationSupport |
Configuration support for WebSocket request handling.
|
| Annotation Type | Description |
|---|---|
| EnableWebSocket |
Add this annotation to an
@Configuration class to configure
processing WebSocket requests:
@Configuration
@EnableWebSocket
public class MyWebSocketConfig {
} |