This commit is contained in:
Thomas
2020-08-09 19:41:29 +02:00
parent a1014d998e
commit 7edec4bc22
108 changed files with 1266 additions and 150 deletions

View File

@@ -0,0 +1,20 @@
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("*");
}
}