24 lines
822 B
Java
24 lines
822 B
Java
package com.baeldung.rawwebsocket;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.socket.WebSocketHandler;
|
|
import org.springframework.web.socket.config.annotation.EnableWebSocket;
|
|
import org.springframework.web.socket.config.annotation.WebSocketConfigurer;
|
|
import org.springframework.web.socket.config.annotation.WebSocketHandlerRegistry;
|
|
|
|
@Configuration
|
|
@EnableWebSocket
|
|
public class ServerWebSocketConfig implements WebSocketConfigurer {
|
|
|
|
@Override
|
|
public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {
|
|
registry.addHandler(webSocketHandler(), "/websocket");
|
|
}
|
|
|
|
@Bean
|
|
public WebSocketHandler webSocketHandler() {
|
|
return new ServerWebSocketHandler();
|
|
}
|
|
}
|