21 lines
711 B
Java
21 lines
711 B
Java
package gltronic.tronio.web;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.context.annotation.Configuration;
|
|
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 WebSocketConfiguration implements WebSocketConfigurer {
|
|
|
|
@Autowired
|
|
private SocketHandler socketHandler;
|
|
|
|
@Override
|
|
public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {
|
|
registry.addHandler(socketHandler, "/socket").setAllowedOrigins("*");
|
|
}
|
|
}
|