leutu
2024-08-20 bbd50cf91c9a8c7cfe48b3c00dde205b7049ae3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.skyline.electricity.controller;
 
import org.springframework.stereotype.*;
import org.springframework.web.socket.server.standard.*;
import org.springframework.context.annotation.*;
 
@Component
public class WebsocketConfiguration
{
    @Bean
    public ServerEndpointExporter serverEndpointExporter() {
        return new ServerEndpointExporter();
    }
}