cl
2024-01-19 e0fac38b26845f25de479783e0c76cf12a5311e0
提交 | 用户 | 时间
71e81e 1 package cn.stylefeng.guns.modular.WebSocket;
2
3
4 import org.springframework.context.annotation.Bean;
5 import org.springframework.context.annotation.Configuration;
6 import org.springframework.web.socket.server.standard.ServerEndpointExporter;
7
8 @Configuration
9 public class WebSocketConfig {
10     @Bean
11     public ServerEndpointExporter serverEndpointExporter(){
12         return new ServerEndpointExporter();
13     }
14 }