JavaProjectRepo/src/main/java/com/yfd/platform/config/WebSocketConfig.java

17 lines
399 B
Java
Raw Normal View History

2025-11-08 10:26:37 +08:00
package com.yfd.platform.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() {
return new ServerEndpointExporter();
}
}