liurunyu
2025-02-14 7bd3b76929e9a126b237ab9e1c8c82e7d20a4a6a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.dy.pipIrrRemote.config;
 
/**
 * @Author: liurunyu
 * @Date: 2025/2/10 15:42
 * @Description
 */
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
 
//开启WebSocket的支持,并把该类注入到spring容器中
@Configuration
public class WebSocketConfig {
    @Bean
    public ServerEndpointExporter serverEndpointExporter() {
        return new ServerEndpointExporter();
    }
}