IntelligentRecognition/ah-jjsp-service/.svn/pristine/8c/8c4abf6e8b5bf4902d1dc2147f7...

24 lines
517 B
Plaintext

package com.sercurityControl.proteam.config;
/**
* @author cw chen
* @description TODO
* @date 2023-04-28 14:56
*/
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
/**
* 开启WebSocket支持
*/
@Configuration
public class WebSocketConfig {
@Bean
public ServerEndpointExporter serverEndpointExporter() {
return new ServerEndpointExporter();
}
}