Spring Boot 集成 websocket(广播式)

Posted treesir

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot 集成 websocket(广播式)相关的知识,希望对你有一定的参考价值。

书上配置WebSocket的方法在springboot2.x已经过时

在1.x版本中写法如下:

@Configuration
@EnableWebSocketMessageBroker//1
public class WebSocketConfig extends AbstractWebSocketMessageBrokerConfigurer

在2.x之后改为:

@Configuration

@EnableWebSocket

public class WebSocketConfig implements WebSocketMessageBrokerConfigurer


 

以上是关于Spring Boot 集成 websocket(广播式)的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot 入门:集成 WebSocket, 实时显示系统日志

Spring Boot 集成 WebSocket,轻松实现信息推送!

实战spring-boot-starter-websocket之断网心跳续期实践

Springboot+vue3集成使用WebSocket

Springboot+vue3集成使用WebSocket

Springboot+vue3集成使用WebSocket