Interface StompWebSocketEndpointRegistration
- All Known Implementing Classes:
WebMvcStompWebSocketEndpointRegistration
public interface StompWebSocketEndpointRegistration
A contract for configuring a STOMP over WebSocket endpoint.
- Since:
- 4.0
- Author:
- Rossen Stoyanchev
-
Method Summary
Modifier and TypeMethodDescriptionaddInterceptors
(HandshakeInterceptor... interceptors) Configure the HandshakeInterceptor's to use.setAllowedOriginPatterns
(String... originPatterns) Alternative tosetAllowedOrigins(String...)
that supports more flexible patterns for specifying the origins for which cross-origin requests are allowed from a browser.setAllowedOrigins
(String... origins) Set the origins for which cross-origin requests are allowed from a browser.setHandshakeHandler
(HandshakeHandler handshakeHandler) Configure the HandshakeHandler to use.Enable SockJS fallback options.
-
Method Details
-
withSockJS
SockJsServiceRegistration withSockJS()Enable SockJS fallback options. -
setHandshakeHandler
Configure the HandshakeHandler to use. -
addInterceptors
Configure the HandshakeInterceptor's to use. -
setAllowedOrigins
Set the origins for which cross-origin requests are allowed from a browser. Please, refer toCorsConfiguration.setAllowedOrigins(List)
for format details and considerations, and keep in mind that the CORS spec does not allow use of"*"
withallowCredentials=true
. For more flexible origin patterns usesetAllowedOriginPatterns(java.lang.String...)
instead.By default, no origins are allowed. When
allowedOriginPatterns
is also set, then that takes precedence over this property.Note when SockJS is enabled and origins are restricted, transport types that do not allow to check request origin (Iframe based transports) are disabled. As a consequence, IE 6 to 9 are not supported when origins are restricted.
-
setAllowedOriginPatterns
Alternative tosetAllowedOrigins(String...)
that supports more flexible patterns for specifying the origins for which cross-origin requests are allowed from a browser. Please, refer toCorsConfiguration.setAllowedOriginPatterns(List)
for format details and other considerations.By default this is not set.
- Since:
- 5.3.2
-