package cn.stylefeng.roses.kernel.socket.business.websocket.config;
|
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
|
|
/**
|
* 开启WebSocket支持
|
*
|
* @author majianguo
|
* @date 2021/6/21 下午5:01
|
*/
|
@Configuration
|
public class WebSocketConfig {
|
|
@Bean
|
public ServerEndpointExporter serverEndpointExporter() {
|
return new ServerEndpointExporter();
|
}
|
}
|