Class StompSubProtocolHandler
- java.lang.Object
- org.springframework.web.socket.messaging.StompSubProtocolHandler
- All Implemented Interfaces:
Aware,ApplicationEventPublisherAware,SubProtocolHandler
public class StompSubProtocolHandler extends Object implements SubProtocolHandler, ApplicationEventPublisherAware
ASubProtocolHandlerfor STOMP that supports versions 1.0, 1.1, and 1.2 of the STOMP specification.- Since:
- 4.0
- Author:
- Rossen Stoyanchev, Andy Wilkinson
Field Summary
Fields Modifier and Type Field Description static StringCONNECTED_USER_HEADERThe name of the header set on the CONNECTED frame indicating the name of the user authenticated on the WebSocket session.static intMINIMUM_WEBSOCKET_MESSAGE_SIZEThis handler supports assembling large STOMP messages split into multiple WebSocket messages and STOMP clients (like stomp.js) indeed split large STOMP messages at 16K boundaries.
Constructor Summary
Constructors Constructor Description StompSubProtocolHandler()
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidafterSessionEnded(WebSocketSession session, CloseStatus closeStatus, MessageChannel outputChannel)Invoked after aWebSocketSessionhas ended.voidafterSessionStarted(WebSocketSession session, MessageChannel outputChannel)Invoked after aWebSocketSessionhas started.StompSubProtocolErrorHandlergetErrorHandler()Return the configured error handler.MessageHeaderInitializergetHeaderInitializer()Return the configured header initializer.intgetMessageSizeLimit()Get the configured message buffer size limit in bytes.StringgetStatsInfo()Return a String describing internal state and counters.List<String>getSupportedProtocols()Return the list of sub-protocols supported by this handler (nevernull).UserSessionRegistrygetUserSessionRegistry()Deprecated.as of 4.2voidhandleMessageFromClient(WebSocketSession session, WebSocketMessage<?> webSocketMessage, MessageChannel outputChannel)Handle incoming WebSocket messages from clients.voidhandleMessageToClient(WebSocketSession session, Message<?> message)Handle STOMP messages going back out to WebSocket clients.StringresolveSessionId(Message<?> message)Resolve the session id from the given message or returnnull.protected voidsendErrorMessage(WebSocketSession session, Throwable error)Deprecated.as of Spring 4.2, in favor ofconfiguringaStompSubProtocolErrorHandlervoidsetApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher)Set the ApplicationEventPublisher that this object runs in.voidsetDecoder(StompDecoder decoder)Configure aStompDecoderfor decoding STOMP framesvoidsetEncoder(StompEncoder encoder)Configure aStompEncoderfor encoding STOMP framesvoidsetErrorHandler(StompSubProtocolErrorHandler errorHandler)Configure a handler for error messages sent to clients which allows customizing the error messages or preventing them from being sent.voidsetHeaderInitializer(MessageHeaderInitializer headerInitializer)Configure aMessageHeaderInitializerto apply to the headers of all messages created from decoded STOMP frames and other messages sent to the client inbound channel.voidsetMessageSizeLimit(int messageSizeLimit)Configure the maximum size allowed for an incoming STOMP message.voidsetUserSessionRegistry(UserSessionRegistry registry)Deprecated.as of 4.2 in favor ofDefaultSimpUserRegistrywhich relies on the ApplicationContext events published by this class and is created viaWebSocketMessageBrokerConfigurationSupport.createLocalUserRegistryprotected StompHeaderAccessortoMutableAccessor(StompHeaderAccessor headerAccessor, Message<?> message)StringtoString()
Field Detail
MINIMUM_WEBSOCKET_MESSAGE_SIZE
public static final int MINIMUM_WEBSOCKET_MESSAGE_SIZE
This handler supports assembling large STOMP messages split into multiple WebSocket messages and STOMP clients (like stomp.js) indeed split large STOMP messages at 16K boundaries. Therefore the WebSocket server input message buffer size must allow 16K at least plus a little extra for SockJS framing.- See Also:
- Constant Field Values
CONNECTED_USER_HEADER
public static final String CONNECTED_USER_HEADER
The name of the header set on the CONNECTED frame indicating the name of the user authenticated on the WebSocket session.- See Also:
- Constant Field Values
Constructor Detail
StompSubProtocolHandler
public StompSubProtocolHandler()
Method Detail
setErrorHandler
public void setErrorHandler(StompSubProtocolErrorHandler errorHandler)
Configure a handler for error messages sent to clients which allows customizing the error messages or preventing them from being sent.By default this isn't configured in which case an ERROR frame is sent with a message header reflecting the error.
- Parameters:
errorHandler- the error handler
getErrorHandler
public StompSubProtocolErrorHandler getErrorHandler()
Return the configured error handler.
setMessageSizeLimit
public void setMessageSizeLimit(int messageSizeLimit)
Configure the maximum size allowed for an incoming STOMP message. Since a STOMP message can be received in multiple WebSocket messages, buffering may be required and therefore it is necessary to know the maximum allowed message size.By default this property is set to 64K.
- Since:
- 4.0.3
getMessageSizeLimit
public int getMessageSizeLimit()
Get the configured message buffer size limit in bytes.- Since:
- 4.0.3
setUserSessionRegistry
@Deprecated public void setUserSessionRegistry(UserSessionRegistry registry)
Deprecated.as of 4.2 in favor ofDefaultSimpUserRegistrywhich relies on the ApplicationContext events published by this class and is created viaWebSocketMessageBrokerConfigurationSupport.createLocalUserRegistryProvide a registry with which to register active user session ids.- See Also:
UserDestinationMessageHandler
getUserSessionRegistry
@Deprecated public UserSessionRegistry getUserSessionRegistry()
Deprecated.as of 4.2
setEncoder
public void setEncoder(StompEncoder encoder)
Configure aStompEncoderfor encoding STOMP frames- Since:
- 4.3.5
setDecoder
public void setDecoder(StompDecoder decoder)
Configure aStompDecoderfor decoding STOMP frames- Since:
- 4.3.5
setHeaderInitializer
public void setHeaderInitializer(MessageHeaderInitializer headerInitializer)
Configure aMessageHeaderInitializerto apply to the headers of all messages created from decoded STOMP frames and other messages sent to the client inbound channel.By default this property is not set.
getHeaderInitializer
public MessageHeaderInitializer getHeaderInitializer()
Return the configured header initializer.
getSupportedProtocols
public List<String> getSupportedProtocols()
Description copied from interface:SubProtocolHandlerReturn the list of sub-protocols supported by this handler (nevernull).- Specified by:
getSupportedProtocolsin interfaceSubProtocolHandler
setApplicationEventPublisher
public void setApplicationEventPublisher(ApplicationEventPublisher applicationEventPublisher)
Description copied from interface:ApplicationEventPublisherAwareSet the ApplicationEventPublisher 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 before ApplicationContextAware's setApplicationContext.
- Specified by:
setApplicationEventPublisherin interfaceApplicationEventPublisherAware- Parameters:
applicationEventPublisher- event publisher to be used by this object
getStatsInfo
public String getStatsInfo()
Return a String describing internal state and counters.
handleMessageFromClient
public void handleMessageFromClient(WebSocketSession session, WebSocketMessage<?> webSocketMessage, MessageChannel outputChannel)
Handle incoming WebSocket messages from clients.- Specified by:
handleMessageFromClientin interfaceSubProtocolHandler- Parameters:
session- the client sessionwebSocketMessage- the client messageoutputChannel- an output channel to send messages to
sendErrorMessage
@Deprecated protected void sendErrorMessage(WebSocketSession session, Throwable error)
Deprecated.as of Spring 4.2, in favor ofconfiguringaStompSubProtocolErrorHandlerInvoked when noerrorHandleris configured to send an ERROR frame to the client.
handleMessageToClient
public void handleMessageToClient(WebSocketSession session, Message<?> message)
Handle STOMP messages going back out to WebSocket clients.- Specified by:
handleMessageToClientin interfaceSubProtocolHandler- Parameters:
session- the client sessionmessage- the client message
toMutableAccessor
protected StompHeaderAccessor toMutableAccessor(StompHeaderAccessor headerAccessor, Message<?> message)
resolveSessionId
public String resolveSessionId(Message<?> message)
Description copied from interface:SubProtocolHandlerResolve the session id from the given message or returnnull.- Specified by:
resolveSessionIdin interfaceSubProtocolHandler- Parameters:
message- the message to resolve the session id from
afterSessionStarted
public void afterSessionStarted(WebSocketSession session, MessageChannel outputChannel)
Description copied from interface:SubProtocolHandlerInvoked after aWebSocketSessionhas started.- Specified by:
afterSessionStartedin interfaceSubProtocolHandler- Parameters:
session- the client sessionoutputChannel- a channel
afterSessionEnded
public void afterSessionEnded(WebSocketSession session, CloseStatus closeStatus, MessageChannel outputChannel)
Description copied from interface:SubProtocolHandlerInvoked after aWebSocketSessionhas ended.- Specified by:
afterSessionEndedin interfaceSubProtocolHandler- Parameters:
session- the client sessioncloseStatus- the reason why the session was closedoutputChannel- a channel