suerprisePlus
2024-08-28 ccc0c29ff83aafea87a6d3f3bca3ef9e0aa8268a
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();
    }
}