init: ASW-37 初始化 device-api
This commit is contained in:
21
src/main/java/net/geedge/api/config/WebSocketConfig.java
Normal file
21
src/main/java/net/geedge/api/config/WebSocketConfig.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package net.geedge.api.config;
|
||||
|
||||
import net.geedge.api.entity.DeviceApiYml;
|
||||
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 WebSocketConfig implements WebSocketConfigurer {
|
||||
|
||||
@Autowired
|
||||
private DeviceApiYml deviceApiYml;
|
||||
|
||||
@Override
|
||||
public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {
|
||||
registry.addHandler(new VncProxyHandler(deviceApiYml.getVnc()), "/api/v1/device/websocket").setAllowedOrigins("*");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user