All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ape9527.core.config.WebSocketConfig Maven / Gradle / Ivy

The newest version!
package com.ape9527.core.config;

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

/**
 * @author YuanShuai[[email protected]]
 */
@Configuration
public class WebSocketConfig {

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy