package com.web.jhsop.websocket.config; import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.socket.config.annotation.EnableWebSocket; import org.springframework.web.socket.server.standard.ServerEndpointExporter; @Configuration @EnableWebSocket //开发时候注释,打包时放出来 @ConditionalOnProperty(name = "spring.profiles.active", havingValue = "dev") public class WebSocketConfig { /** * 注入ServerEndpointExporter, * 这个bean会自动注册使用了@ServerEndpoint注解声明的Websocket endpoint // */ @Bean public ServerEndpointExporter serverEndpointExporter() { return new ServerEndpointExporter(); } }