260720
This commit is contained in:
22
src/main/java/com/gxwebsoft/ai/config/WebSocketConfig.java
Normal file
22
src/main/java/com/gxwebsoft/ai/config/WebSocketConfig.java
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user