WebSocketConfig

package com.seemygo.shop.cloud.core;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;

@Configuration
public class WebSocketConfig {

    @Bean
    public ServerEndpointExporter serverEndpointExporter() {
        return new ServerEndpointExporter();
    }
}

 

posted @ 2021-12-12 18:36  白芷100  阅读(151)  评论(0)    收藏  举报