WebSocket 练习 直接上图
GIF 2021-5-24 11-30-29.gif
步骤记录
1,websocket 连接。java 后台进行 后台创建和保留Session
2,发送根据userid 来查找session。
3,找到session 然后在发送
发送方法主要
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
try {
session.getAsyncRemote().sendText(message);
} catch (Exception e) {
log.error("[Socket] websocket-->向客户端发送数据发生异常", e);
}
app 端
Snipaste_2021-05-24_13-04-30.png
网友评论