18 lines
445 B
Java
18 lines
445 B
Java
package com.ruoyi.tast.config;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
|
|
|
|
@Configuration
|
|
public class CommonConfig {
|
|
|
|
/**
|
|
* websocket配置
|
|
* @return
|
|
*/
|
|
@Bean
|
|
public ServerEndpointExporter serverEndpointExporter() {
|
|
return new ServerEndpointExporter();
|
|
}
|
|
} |