WebSocket 是 HTML5 开始提供的一种在单个 TCP 连接上进行全双工通讯的协议。
WebSocket 使得客户端和服务器之间的数据交换变得更加简单,允许服务端主动向客户端推送数据。在 WebSocket API 中,浏览器和服务器只需要完成一次握手,两者之间就直接可以创建持久性的连接,并进行双向数据传输。
在 WebSocket API 中,浏览器和服务器只需要做一个握手的动作,然后,浏览器和服务器之间就形成了一条快速通道。两者之间就直接可以数据互相传送。
现在,很多网站为了实现推送技术,所用的技术都是 Ajax 轮询。轮询是在特定的的时间间隔(如每1秒),由浏览器对服务器发出HTTP请求,然后由服务器返回最新的数据给客户端的浏览器。这种传统的模式带来很明显的缺点,即浏览器需要不断的向服务器发出请求,然而HTTP请求可能包含较长的头部,其中真正有效的数据可能只是很小的一部分,显然这样会浪费很多的带宽等资源。
HTML5 定义的 WebSocket 协议,能更好的节省服务器资源和带宽,并且能够更实时地进行通讯。

浏览器通过 JavaScript 向服务器发出建立 WebSocket 连接的请求,连接建立以后,客户端和服务器端就可以通过 TCP 连接直接交换数据。
当你获取 Web Socket 连接后,你可以通过 send() 方法来向服务器发送数据,并通过 onmessage 事件来接收服务器返回的数据。
创建WebSocket 对象
var Socket = new WebSocket(url, [protocol] );
以上代码中的第一个参数 url, 指定连接的 URL。第二个参数 protocol 是可选的,指定了可接受的子协议。
WebSocket 协议本质上是一个基于 TCP 的协议。
为了建立一个 WebSocket 连接,客户端浏览器首先要向服务器发起一个 HTTP 请求,这个请求和通常的 HTTP 请求不同,包含了一些附加头信息,其中附加头信息"Upgrade: WebSocket"表明这是一个申请协议升级的 HTTP 请求,服务器端解析这些附加的头信息然后产生应答信息返回给客户端,客户端和服务器端的 WebSocket 连接就建立起来了,双方就可以通过这个连接通道自由的传递信息,并且这个连接会持续存在直到客户端或者服务器端的某一方主动的关闭连接。
以下是 WebSocket 对象的相关事件。假定我们使用了以上代码创建了 Socket 对象:
| 事件 | 事件处理程序 | 描述 |
|---|---|---|
| open | Socket.onopen | 连接建立时触发 |
| message | Socket.onmessage | 客户端接收服务端数据时触发 |
| error | Socket.onerror | 通信发生错误时触发 |
| close | Socket.onclose | 连接关闭时触发 |
以下是 WebSocket 对象的相关方法。假定我们使用了以上代码创建了 Socket 对象:
| 方法 | 描述 |
|---|---|
| Socket.send() | 使用连接发送数据 |
| Socket.close() | 关闭连接 |


学习博客:Springboot+Vue实现在线聊天(通用版)_程序员青戈的博客-CSDN博客_springboot聊天
-
-
org.springframework.boot -
spring-boot-starter-websocket -
- import org.springframework.context.annotation.Bean;
- import org.springframework.context.annotation.Configuration;
- import org.springframework.web.socket.server.standard.ServerEndpointExporter;
-
- /**
- * 开启WebSocket服务端的自动注册
- */
- @Configuration
- public class WebSocketConfig {
-
- @Bean
- public ServerEndpointExporter serverEndpointExporter() {
- return new ServerEndpointExporter();
- }
-
- }
- package com.example.go.controller.webSocket;
-
- import cn.hutool.json.JSONArray;
- import cn.hutool.json.JSONObject;
- import cn.hutool.json.JSONUtil;
- import com.example.go.entity.ChatPeople;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- import org.springframework.stereotype.Component;
-
- import javax.websocket.*;
- import javax.websocket.server.PathParam;
- import javax.websocket.server.ServerEndpoint;
- import java.text.ParseException;
- import java.util.Map;
- import java.util.concurrent.ConcurrentHashMap;
-
- /**
- * @author websocket服务
- */
- @ServerEndpoint(value = "/imserver/{username}/{id}/{status}")
- @Component
- public class WebSocketServer {
- private static final Logger log = LoggerFactory.getLogger(WebSocketServer.class);
- /**
- * 记录当前在线连接数
- */
- public static final Map
sessionMap = new ConcurrentHashMap<>(); -
- //用户集合
- public static final Map
userMap = new ConcurrentHashMap<>(); - //客服集合
- public static final Map
managerMap = new ConcurrentHashMap<>(); -
-
- /**
- * 连接建立成功调用的方法
- */
- @OnOpen
- public void onOpen(Session session, @PathParam("username") String username,@PathParam("id") Integer id,@PathParam("status") String status) {
- ChatPeople chatPeople = new ChatPeople(id,username,status);
- System.out.println(chatPeople);
- System.out.println(session);
- sessionMap.put(chatPeople, session);
- if ( status.equals("1") ){//客服
- managerMap.put(username,chatPeople);
- } else {//用户
- userMap.put(username,chatPeople);
- }
- log.info("有新用户加入,username={}, 当前在线人数为:{}", username, sessionMap.size());
- JSONObject result = new JSONObject();
- JSONArray array = new JSONArray();
- result.set("users", array);
- for (Object key : sessionMap.keySet()) {
- JSONObject jsonObject = new JSONObject();
- jsonObject.set("user", key);
- // {"user":{"id":6,"username":"11","status":"2"}}
- array.add(jsonObject);
- }
- // {"users":[{"user":{"id":6,"username":"11","status":"2"}}]}
- sendAllMessage(JSONUtil.toJsonStr(result)); // 后台发送消息给所有的客户端
- }
- /**
- * 连接关闭调用的方法
- */
- @OnClose
- public void onClose(Session session, @PathParam("username") String username,@PathParam("id") Integer id,@PathParam("status") String status) {
- ChatPeople chatPeople = new ChatPeople(id,username,status);
- sessionMap.remove(chatPeople);
- log.info("有一连接关闭,移除username={}的用户session, 当前在线人数为:{}", username, sessionMap.size());
- }
- /**
- * 收到客户端消息后调用的方法
- * 后台收到客户端发送过来的消息
- * onMessage 是一个消息的中转站
- * 接受 浏览器端 socket.send 发送过来的 json数据
- * @param message 客户端发送过来的消息
- */
- @OnMessage
- public void onMessage(String message, Session session, @PathParam("username") String username,@PathParam("id") Integer id,@PathParam("status") String status) throws ParseException {
- log.info("服务端收到用户username={}的消息:{}", username, message);
- JSONObject obj = JSONUtil.parseObj(message);
- String toUsername = obj.getStr("to"); // to表示发送给哪个用户,比如 admin
- String text = obj.getStr("text"); // 发送的消息文本 hello
- //创建聊天对象
- ChatPeople chatPeople;
- if ( status.equals("2") ){//客服
- chatPeople = managerMap.get(toUsername);
- }else{//用户
- chatPeople = userMap.get(toUsername);
- }
- System.out.println("要发送消息的对象:"+chatPeople);
- Session toSession = sessionMap.get(chatPeople); // 根据 to用户名来获取 session,再通过session发送消息文本
- System.out.println(toSession);
- if (toSession != null) {
- // 服务器端 再把消息组装一下,组装后的消息包含发送人和发送的文本内容
- // {"from": "zhang", "text": "hello"}
- JSONObject jsonObject = new JSONObject();
- jsonObject.set("from", username); // from 是 zhang
- jsonObject.set("text", text); // text 同上面的text
- this.sendMessage(jsonObject.toString(), toSession);
- log.info("发送给用户username={},消息:{}", toUsername, jsonObject.toString());
- } else {
- log.info("发送失败,未找到用户username={}的session", toUsername);
- }
- }
- @OnError
- public void onError(Session session, Throwable error) {
- log.error("发生错误");
- error.printStackTrace();
- }
- /**
- * 服务端发送消息给客户端
- */
- private void sendMessage(String message, Session toSession) {
- try {
- log.info("服务端给客户端[{}]发送消息{}", toSession.getId(), message);
- toSession.getBasicRemote().sendText(message);
- } catch (Exception e) {
- log.error("服务端发送消息给客户端失败", e);
- }
- }
- /**
- * 服务端发送消息给所有客户端
- */
- private void sendAllMessage(String message) {
- try {
- for (Session session : sessionMap.values()) {
- log.info("服务端给客户端[{}]发送消息{}", session.getId(), message);
- session.getBasicRemote().sendText(message);
- }
- } catch (Exception e) {
- log.error("服务端发送消息给客户端失败", e);
- }
- }
- }
- <template>
- <div style="padding: 10px; margin-bottom: 50px">
- <el-row>
- <el-col :span="4">
- <el-card style="width: 300px; height: 300px; color: #333">
- <div style="padding-bottom: 10px; border-bottom: 1px solid #ccc">
- 在线用户<span style="font-size: 12px"
- >(点击聊天气泡开始聊天)
- >
- div>
- <div
- style="padding: 10px 0"
- v-for="user in users"
- :key="user.user.username"
- >
- <span>{{ user.user.username }}span>
- <i
- class="el-icon-chat-dot-round"
- style="margin-left: 10px; font-size: 16px; cursor: pointer"
- @click="chatUser = user.user.username"
- >i>
- <span
- style="font-size: 12px; color: limegreen; margin-left: 5px"
- v-if="user.user.username === chatUser"
- >chatting...
- >
- div>
- el-card>
- el-col>
- <el-col :span="20">
- <div style="
- width: 800px;
- margin: 0 auto;
- background-color: white;
- border-radius: 5px;
- box-shadow: 0 0 10px #ccc;
- "
- >
- <div style="text-align: center; line-height: 50px">
- Web聊天室({{ chatUser }})
- div>
- <div
- style="height: 350px; overflow: auto; border-top: 1px solid #ccc"
- v-html="content"
- >div>
- <div class="chat">
- <div style="height: 200px">
- <textarea
- v-model="text"
- style="
- height: 160px;
- width: 95%;
- padding: 20px;
- border: none;
- border-top: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
- outline: none;
- "
- >textarea>
- <div style="text-align: right; padding-right: 10px">
- <el-button type="primary" size="mini" @click="send"
- >发送
- >
- div>
- div>
- div>
- div>
- el-col>
- el-row>
- div>
- template>
- <script>
- let socket;
- export default {
- name: "Im",
- data() {
- return {
- circleUrl:
- "https://cube.elemecdn.com/3/7c/3ea6beec64369c2642b92c6726f1epng.png",
- user: {},
- isCollapse: false,
- users: [],
- chatUser: "",
- text: "",
- messages: [],
- content: "",
- };
- },
- created() {
- this.init();
- },
- methods: {
- send() {
- if (!this.chatUser) {
- this.$message({ type: "warning", message: "请选择聊天对象" });
- return;
- }
- if (!this.text) {
- this.$message({ type: "warning", message: "请输入内容" });
- } else {
- if (typeof WebSocket == "undefined") {
- console.log("您的浏览器不支持WebSocket");
- } else {
- console.log("您的浏览器支持WebSocket");
- // 组装待发送的消息 json
- // {"from": "zhang", "to": "admin", "text": "聊天文本"}
- let message = {
- from: this.user.username,
- to: this.chatUser,
- text: this.text,
- };
- socket.send(JSON.stringify(message)); // 将组装好的json发送给服务端,由服务端进行转发
- this.messages.push({ user: this.user.username, text: this.text });
- // 构建消息内容,本人消息
- this.createContent(null, this.user.username, this.text);
- this.text = "";
- }
- }
- },
- createContent(remoteUser, nowUser, text) {
- // 这个方法是用来将 json的聊天消息数据转换成 html的。
- let html;
- // 当前用户消息
- if (nowUser) {
- // nowUser 表示是否显示当前用户发送的聊天消息,绿色气泡
- html =
- '\n' +
- ' \n' +
- ' ' +
- text +
- "\n" +
- " \n" +
- ' \n' +
- ' \n' +
- '
\n' + - " \n" +
- " \n" +
- "";
- } else if (remoteUser) {
- // remoteUser表示远程用户聊天消息,蓝色的气泡
- html =
- '\n' +
- ' \n' +
- ' \n' +
- '
\n' + - " \n" +
- " \n" +
- ' \n' +
- ' ' +
- text +
- "\n" +
- " \n" +
- "";
- }
- console.log(html);
- this.content += html;
- },
- init() {
- this.user = JSON.parse(localStorage.getItem("user"));
- let username = this.user.username;
- let id = this.user.id;
- let _this = this;
- if (typeof WebSocket == "undefined") {
- console.log("您的浏览器不支持WebSocket");
- } else {
- console.log("您的浏览器支持WebSocket");
- let socketUrl =
- "ws://localhost:8088/imserver/" + username + "/" + id + "/" + 1;
- if (socket != null) {
- socket.close();
- socket = null;
- }
- // 开启一个websocket服务
- socket = new WebSocket(socketUrl);
- //打开事件
- socket.onopen = function () {
- console.log("websocket已打开");
- };
- // 浏览器端收消息,获得从服务端发送过来的文本消息
- socket.onmessage = function (msg) {
- console.log("收到数据====" + msg.data);
- const data = JSON.parse(msg.data); // 对收到的json数据进行解析, 类似这样的: {"users":[{"user":{"id":11,"username":"6","status":"2"}}]}
- if (data.users) {
- console.log(data.users, "users");
- // 获取在线人员信息
- _this.users = data.users.filter(
- (user) =>
- user.user.username !== username &&
- user.user.id !== id &&
- user.user.status !== "1"
- ); // 获取当前连接的所有用户信息,并且排除自身,自己不会出现在自己的聊天列表里
- } else {
- // 如果服务器端发送过来的json数据 不包含 users 这个key,那么发送过来的就是聊天文本json数据
- // {"from": "zhang", "text": "hello"}
- if (data.from === _this.chatUser) {
- _this.messages.push(data);
- // 构建消息内容
- _this.createContent(data.from, null, data.text);
- }
- }
- };
- //关闭事件
- socket.onclose = function () {
- console.log("websocket已关闭");
- };
- //发生了错误事件
- socket.onerror = function () {
- console.log("websocket发生了错误");
- };
- }
- },
- },
- };
- script>
- <style>
- .tip {
- color: white;
- text-align: left;
- border-radius: 10px;
- font-family: sans-serif;
- padding: 10px;
- max-width: 400px;
- word-break: break-all;
- display: inline-block !important;
- display: inline;
- }
- .right {
- background-color: deepskyblue;
- }
- .left {
- background-color: forestgreen;
- }
- style>
(这里是传过去的是客服,如果要修改成用户的话)


改成'2'就行了
还要注意的一个点就是
this.user = JSON.parse(localStorage.getItem("user"));
在保存user时一个使用JSON.stringify
ocalStorage.setItem("user",JSON.stringify(message.data.manager))
在测试的时候,要用两个不同的游览器测试。
-
相关阅读:
940. 不同的子序列 II
时序数据库 TimescaleDB 基础概念
【C语言】循环语句详解
(c++)类和对象中篇
CSDN获评2022年科创中国开源创新榜「开源机构」
8.cmake常用命令
vue监听表单输入的身份证号自动填充性别和生日
Koa 源码剖析
graphviz 绘制红黑树
RabbitMQ 消息中间件 消息队列
-
原文地址:https://blog.csdn.net/bu_xiang_tutou/article/details/128178053