0
点赞
收藏
分享

微信扫一扫

websockt一对一聊天

上古神龙 2022-02-22 阅读 54

实现websockt一对一聊天

WebSocketConfig 配置

/**
 * 开启WebSocket支持
 * @author
 */
@Configuration
public class WebSocketConfig {
   

    @Bean
    @Conditional(WarAndJarWebscoketAutoWired.class)//自动根据情况装配bean
    public ServerEndpointExporter serverEndpointExporter() {
   
        return new ServerEndpointExporter(
举报

相关推荐

0 条评论