List of usage examples for org.springframework.web.socket.server.standard TomcatRequestUpgradeStrategy TomcatRequestUpgradeStrategy
TomcatRequestUpgradeStrategy
From source file:com.github.mrstampy.gameboot.otp.websocket.OtpWebSocketTestConfiguration.java
/** * Creates the handshake handler./* ww w .j a va2 s.c o m*/ * * @return the handshake handler */ @Bean public HandshakeHandler createHandshakeHandler() { return new WebSocketTransportHandler(new DefaultHandshakeHandler(new TomcatRequestUpgradeStrategy())); }