22 lines
565 B
Java
22 lines
565 B
Java
package com.gxwebsoft.ai.config;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
|
|
|
|
|
|
@Configuration
|
|
public class WebSocketConfig
|
|
{
|
|
@Bean
|
|
public ServerEndpointExporter serverEndpointExporter()
|
|
{
|
|
ServerEndpointExporter exporter = new ServerEndpointExporter();
|
|
|
|
// 手动注册 WebSocket 端点
|
|
exporter.setAnnotatedEndpointClasses(WebSocketServer.class);
|
|
|
|
|
|
return exporter;
|
|
}
|
|
} |