leutu
2024-08-27 55e607b91e8058a7fe713fa07cd4c829b5593aa5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.yb.message;
 
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();
    }
}