23 lines
590 B
Java
23 lines
590 B
Java
|
|
package com.ruoyi.web.config;
|
|||
|
|
|
|||
|
|
import org.springframework.context.annotation.Bean;
|
|||
|
|
import org.springframework.context.annotation.Configuration;
|
|||
|
|
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* WebSocket配置
|
|||
|
|
*
|
|||
|
|
* @author ruoyi
|
|||
|
|
*/
|
|||
|
|
@Configuration
|
|||
|
|
public class WebSocketConfig {
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 注入ServerEndpointExporter,
|
|||
|
|
* 这个bean会自动注册使用了@ServerEndpoint注解声明的Websocket endpoint
|
|||
|
|
*/
|
|||
|
|
@Bean
|
|||
|
|
public ServerEndpointExporter serverEndpointExporter() {
|
|||
|
|
return new ServerEndpointExporter();
|
|||
|
|
}
|
|||
|
|
}
|