WebSocket connection to ‘ws://localhost:8080/websocket‘ failed:
springboot集成websocket,未配置ServerEndpointExporter时会报ws协议连接错误。
·
springboot集成websocket,未配置ServerEndpointExporter时会报ws协议连接错误。
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();
}
}更多推荐




所有评论(0)