IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 网络协议 -> webSocket聊天系统 -> 正文阅读

[网络协议]webSocket聊天系统

webSocket配置类

package com.example.websocket.config;
 
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;
 
/**
 * wyl 2021/8/24
 */
@Configuration
public class WebSocketConfig
{
    @Bean
    public ServerEndpointExporter serverEndpointExporter()
    {
        return new ServerEndpointExporter();
    }
}

webSocket实时聊天类

package com.example.websocket.config;


import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import org.springframework.util.StringUtils;

import javax.annotation.PostConstruct;
import javax.websocket.*;
import javax.websocket.server.PathParam;
import javax.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.util.concurrent.ConcurrentHashMap;
 
/**
 * websocket实现实时聊天
 */
@Slf4j
@Component
@ServerEndpoint(value = "/websocket/{userId}/{receiveUserId}")
public class MyWebSocket {
    public static MyWebSocket webSocketServer;
    @PostConstruct
    public void init(){
        webSocketServer = this;
    }
    /**
     * 在线人数
     */
    public static int onlineNumber = 0;
 
    /**
     * 所有的对象
     */
//    public static List<MyWebSocket> webSockets = new CopyOnWriteArrayList<MyWebSocket>();
    /**concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象。*/
    private static ConcurrentHashMap<Long,MyWebSocket> webSocketMap = new ConcurrentHashMap<>();
    /**
     * 会话
     */
    private Session session;

    /**发送userId*/
    private Long userId;
    /**接收userId*/
    private Long receiveUserId;
 
    /**
     * 建立连接
     *
     * @param session
     */
    @OnOpen
    public void onOpen(Session session, @PathParam("userId") Long userId, @PathParam("receiveUserId") Long receiveUserId) {
        this.session = session;
        this.userId=userId;
        this.receiveUserId=receiveUserId;
        //判断该用户是否在线
        if(webSocketMap.containsKey(userId)){
            webSocketMap.remove(userId);
            webSocketMap.put(userId,this);
        }else {
            webSocketMap.put(userId,this);
            //在线人数+1
            addOnlineCount();
            log.info("用户连接:"+userId+",当前在线人数为:" + getOnlineCount());
        }
        //发送消息
        sendMessage("连接成功");
    }
 
    /**
     * 连接关闭
     */
    @OnClose
    public void onClose() {
        if(webSocketMap.containsKey(userId)){
            webSocketMap.remove(userId);
            //在线人数-1
            subOnlineCount();
        }
        log.info("用户退出:"+userId+",当前在线人数为:" + getOnlineCount());
        if(webSocketMap.containsKey(receiveUserId)){
            webSocketMap.remove(receiveUserId);
            //在线人数-1
            subOnlineCount();
        }
        log.info("用户退出:"+receiveUserId+",当前在线人数为:" + getOnlineCount());
    }
 
    /**
     * 收到客户端的消息
     *
     * @param message 消息
     * @param session 会话
     */
    @OnMessage
    public void onMessage(String message, Session session) {
        log.info("用户消息:"+userId+",报文:"+message);
        //可以群发消息
        //消息保存到数据库、redis
        if (!StringUtils.isEmpty(message)){
            try {
                if (webSocketMap.get(receiveUserId)!=null){
                    if (webSocketMap.containsKey(receiveUserId)){
                        webSocketMap.get(receiveUserId).sendMessage(message);
                    }else {
                        log.error("请求的userId:"+receiveUserId+"不在该服务器上");
                    }
                }
            }catch (Exception e){
                e.printStackTrace();
            }
            sendMessage(message);
        }
    }
 
    /**
     * 发送消息
     *
     * @param message 消息
     */
    public void sendMessage(String message) {
        try {
            session.getBasicRemote().sendText(message);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    @OnError
    public void onError(Session session, Throwable error) {
        log.error("用户错误:"+this.userId+",原因:"+error.getMessage());
        error.printStackTrace();
    }


    public static synchronized int getOnlineCount() {
        return onlineNumber;
    }

    public static synchronized void addOnlineCount() {
        MyWebSocket.onlineNumber++;
    }

    public static synchronized void subOnlineCount() {
        MyWebSocket.onlineNumber--;
    }


}

html页面一对一聊天

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>welcome</title>
</head>
<body>
<div>你好</div>
自己<input id="my" type="text"/><br>
接收消息人<input id="receive" type="text"/><br>
<button onclick="start()">点击建立连接</button><br>
<div id="messageList" style="width: 300px;height: 300px;border: 1px solid black"></div>
<input id="sendMessage" style="height: 100px; width: 200px"/><button onclick="sendMessage()">点击发送</button>

</body>

<script>

    var webSocket;
    var my;
    var receive;
    function start(){
        my = document.getElementById('my').value
        receive= document.getElementById('receive').value
        if (window.WebSocket) {
            webSocket = new WebSocket("ws://localhost:3477/websocket/"+my+"/"+receive);

            //连通之后的回调事件
            webSocket.onopen = function() {
                webSocket.send("发送数据");
            };

            //接收后台服务端的消息
            webSocket.onmessage = function (evt) {
                var message = evt.data;
                 var h2 = document.createElement("h2")
                h2.innerHTML = message
                document.getElementById('messageList').appendChild(h2)
            };

            /*//连接关闭的回调事件
            webSocket.onclose = function() {
                alert("连接已关闭...");
            };*/
        }
    }
    //发送消息
    function sendMessage(){
        webSocket.send(document.getElementById('sendMessage').value)
    }

</script>
</html>
  网络协议 最新文章
使用Easyswoole 搭建简单的Websoket服务
常见的数据通信方式有哪些?
Openssl 1024bit RSA算法---公私钥获取和处
HTTPS协议的密钥交换流程
《小白WEB安全入门》03. 漏洞篇
HttpRunner4.x 安装与使用
2021-07-04
手写RPC学习笔记
K8S高可用版本部署
mySQL计算IP地址范围
上一篇文章      下一篇文章      查看所有文章
加:2021-08-25 12:33:59  更:2021-08-25 12:34:25 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 21:13:09-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码