WebSocketConfig.java 499 Bytes
package com.huaheng.mobile.websocket;

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

/**
 * 配置websocket并开启
 */
//@Configuration
@Lazy
public class WebSocketConfig {
//    @Bean
    public ServerEndpointExporter serverEndpointExporter(){
        return new ServerEndpointExporter();
    }

}