package com.ruoyi.system.util.websocket;
|
|
import org.springframework.context.annotation.Bean;
|
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 {
|
@Override
|
public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {
|
registry.addHandler(webSocketHandler(), "/websocket")
|
.setAllowedOrigins("*"); // 允许跨域访问
|
}
|
|
@Bean
|
public MyWebSocketHandler webSocketHandler() {
|
// 使用自定义的WebSocket处理器
|
return new MyWebSocketHandler();
|
}
|
}
|