abstract class AbstractStandardUpgradeStrategy : RequestUpgradeStrategy
A base class for RequestUpgradeStrategy implementations that build on the standard WebSocket API for Java (JSR-356). |
|
abstract class AbstractTyrusRequestUpgradeStrategy : AbstractStandardUpgradeStrategy
A base class for Works with Tyrus 1.11 (WebLogic 12.2.1) and Tyrus 1.12 (GlassFish 4.1.1). |
|
open class GlassFishRequestUpgradeStrategy : AbstractTyrusRequestUpgradeStrategy
A WebSocket |
|
open class ServerEndpointExporter : WebApplicationObjectSupport, InitializingBean, SmartInitializingSingleton
Detects beans of type javax.websocket.server.ServerEndpointConfig and registers with the standard Java WebSocket runtime. Also detects beans annotated with ServerEndpoint and registers them as well. Although not required, it is likely annotated endpoints should have their When this class is used, by declaring it in Spring configuration, it should be possible to turn off a Servlet container's scan for WebSocket endpoints. This can be done with the help of the |
|
open class ServletServerContainerFactoryBean : FactoryBean<WebSocketContainer>, ServletContextAware, InitializingBean
A FactoryBean for configuring javax.websocket.server.ServerContainer. Since there is usually only one This is useful even if the |
|
open class SpringConfigurator : Configurator
A javax.websocket.server.ServerEndpointConfig.Configurator for initializing ServerEndpoint-annotated classes through Spring.
|
|
open class TomcatRequestUpgradeStrategy : AbstractStandardUpgradeStrategy
A WebSocket To modify properties of the underlying javax.websocket.server.ServerContainer you can use ServletServerContainerFactoryBean in XML configuration or, when using Java configuration, access the container instance through the "javax.websocket.server.ServerContainer" ServletContext attribute. |
|
open class UndertowRequestUpgradeStrategy : AbstractStandardUpgradeStrategy
A WebSocket Requires Undertow 1.3.5+ as of Spring Framework 5.0. |
|
open class WebLogicRequestUpgradeStrategy : AbstractTyrusRequestUpgradeStrategy
A WebSocket |
|
open class WebSphereRequestUpgradeStrategy : AbstractStandardUpgradeStrategy
WebSphere support for upgrading an HttpServletRequest during a WebSocket handshake. To modify properties of the underlying javax.websocket.server.ServerContainer you can use ServletServerContainerFactoryBean in XML configuration or, when using Java configuration, access the container instance through the "javax.websocket.server.ServerContainer" ServletContext attribute. Tested with WAS Liberty beta (August 2015) for the upcoming 8.5.5.7 release. |