2021
05-25
05-25
Springboot+WebSocket实现一对一聊天和公告的示例代码
1.POM文件导入Springboot整合websocket的依赖<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-websocket</artifactId><version>2.1.6.RELEASE</version></dependency>2.注册WebSocket的Bean交给Spring容器管理@ConfigurationpublicclassWebSocketServiceConfig{@BeanpublicServerEndpointExporterserverEndpointExpor...
继续阅读 >