package com.ruoyi.fuzhou.config;
|
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
|
|
/**
|
* 开启WebSocket支持
|
* @author zhangyy
|
*/
|
@Configuration
|
public class WebSocketConfig {
|
/**
|
* ServerEndpointExporter 作用
|
* 这个Bean会自动注册使用@ServerEndpoint注解声明的websocket endpoint
|
* @return
|
*/
|
@Bean
|
public ServerEndpointExporter serverEndpointExporter() {
|
return new ServerEndpointExporter();
|
}
|
|
}
|