Class StandardWebSocketUpgradeStrategy
java.lang.Object
org.springframework.web.socket.server.standard.StandardWebSocketUpgradeStrategy
- All Implemented Interfaces:
 RequestUpgradeStrategy
A WebSocket 
RequestUpgradeStrategy for the Jakarta WebSocket API 2.1+.
 To modify properties of the underlying ServerContainer
 you can use ServletServerContainerFactoryBean in XML configuration or,
 when using Java configuration, access the container instance through the
 "jakarta.websocket.server.ServerContainer" ServletContext attribute.
- Since:
 - 6.0
 - Author:
 - Juergen Hoeller, Rossen Stoyanchev
 - See Also:
 
- 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptionprotected ServerContainergetContainer(HttpServletRequest request) protected final HttpServletRequestgetHttpServletRequest(ServerHttpRequest request) protected final HttpServletResponsegetHttpServletResponse(ServerHttpResponse response) protected List<WebSocketExtension> getInstalledExtensions(WebSocketContainer container) getSupportedExtensions(ServerHttpRequest request) Return the WebSocket protocol extensions supported by the underlying WebSocket server.String[]Return the supported WebSocket protocol versions.voidupgrade(ServerHttpRequest request, ServerHttpResponse response, @Nullable String selectedProtocol, List<WebSocketExtension> selectedExtensions, @Nullable Principal user, WebSocketHandler wsHandler, Map<String, Object> attrs) Perform runtime specific steps to complete the upgrade. 
- 
Constructor Details
- 
StandardWebSocketUpgradeStrategy
public StandardWebSocketUpgradeStrategy() 
 - 
 - 
Method Details
- 
getSupportedVersions
Description copied from interface:RequestUpgradeStrategyReturn the supported WebSocket protocol versions.- Specified by:
 getSupportedVersionsin interfaceRequestUpgradeStrategy
 - 
getSupportedExtensions
Description copied from interface:RequestUpgradeStrategyReturn the WebSocket protocol extensions supported by the underlying WebSocket server.- Specified by:
 getSupportedExtensionsin interfaceRequestUpgradeStrategy
 - 
getInstalledExtensions
 - 
upgrade
public void upgrade(ServerHttpRequest request, ServerHttpResponse response, @Nullable String selectedProtocol, List<WebSocketExtension> selectedExtensions, @Nullable Principal user, WebSocketHandler wsHandler, Map<String, Object> attrs) throws HandshakeFailureExceptionDescription copied from interface:RequestUpgradeStrategyPerform runtime specific steps to complete the upgrade. Invoked after successful negotiation of the handshake request.- Specified by:
 upgradein interfaceRequestUpgradeStrategy- Parameters:
 request- the current requestresponse- the current responseselectedProtocol- the selected sub-protocol, if anyselectedExtensions- the selected WebSocket protocol extensionsuser- the user to associate with the WebSocket sessionwsHandler- the handler for WebSocket messagesattrs- handshake request specific attributes to be set on the WebSocket session viaHandshakeInterceptorand thus made available to theWebSocketHandler- Throws:
 HandshakeFailureException- thrown when handshake processing failed to complete due to an internal, unrecoverable error, i.e. a server error as opposed to a failure to successfully negotiate the requirements of the handshake request.
 - 
getContainer
 - 
getHttpServletRequest
 - 
getHttpServletResponse
 
 -