websocket点对点消息推送

上一篇写了《若依(ruoyi)使用websocket推送数据到前端 - 简书 (jianshu.com)
》,猿友指出缺少身份识别,无法精准命中给谁推送,本文来继续解决这个问题。

既然想知道消息推送给谁,那肯定需要知道发送者、接受者、消息内容,三个最基本的东西,我简单定义为sendUserId、receiveUserId、msg。假设有三个人(路飞、索隆、艾斯)互相发消息,为了方便,我将发送者放到url中,实际项目上使用需要根据各项目情况从token、request等解析获取,这里只聊思路。

场景

三个人可以互相发消息,也可以给自己发消息,界面如下,接收到的消息会在“消息接收面板”展示出来。


初始化面板
  • 当“路飞”对“索隆”说:跟你说过多少遍不要拿我的帽子!,这时候可以看到,索隆收到了消息,艾斯没有。


    image.png
  • 当“索隆”对“艾斯”说:是你拿了那个家伙的帽子?此时路飞视角是没有收到任何消息的


    image.png

具体实现

1、添加websocket依赖

   <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-websocket</artifactId>
        </dependency>

2、添加配置

@Configuration
@EnableWebSocket
public class WebSocketConfig {

    @Bean
    public ServerEndpointExporter serverEndpointExporter() {
        return new ServerEndpointExporter();
    }

}

3、消息体

非常简单,包括消息内容,发送者和接受者

@Data
public class MsgEntity implements Serializable {

    String msg;

    String userId;

    String receiveUserId;
}

4、定向发送

@Component
@ServerEndpoint(value = "/mos/websocket/{userId}")
@Slf4j
public class WebSocket {
    private static Map<String, Session> livingSession = new ConcurrentHashMap<>();

    /**
     * 客户端与服务端连接成功
     *
     * @param session
     */
    @OnOpen
    public void onOpen(Session session, @PathParam("userId") String userId) {
        livingSession.put(userId, session);
    }

    /**
     * 客户端与服务端连接关闭
     *
     * @param session
     */
    @OnClose
    public void onClose(Session session, @PathParam("userId") String userId) {
        livingSession.remove(userId);
    }

    /**
     * 客户端与服务端连接异常
     *
     * @param error
     * @param session
     */
    @OnError
    public void onError(Throwable error, Session session) {
        error.printStackTrace();
    }

    /**
     * 客户端向服务端发送消息
     * 主要消息发送在这里,找到接受者的session,并推送消息内容
     * @param message
     * @throws IOException
     */
    @OnMessage
    public void onMsg(String msg) throws IOException {
        MsgEntity msgEntity = JSONUtil.toBean(msg,MsgEntity.class);
        Session session = livingSession.get(msgEntity.getReceiveUserId());
        session.getAsyncRemote().sendText(msgEntity.getMsg());
    }

}

5、前端

前端为了界面稍微好看一些,使用了layui,无论什么都是相通的,vue、jquery都可以。

<!DOCTYPE HTML>
<html xmlns:th="http://www.thymeleaf.org">
<head>
    <title>socket消息推送</title>
    <div th:replace="~{common/links::header}"></div>
    <div th:replace="~{common/script::js_footer}"></div>
</head>
<body>
<div class="layui-bg-gray" style="padding: 16px;">
    <div class="layui-row layui-col-space15">
        <div class="layui-col-md6">
            <div class="layui-card">
                <div class="layui-card-header">消息发送面板(发送人:<span id="sender"></span>)</div>
                <div class="layui-card-body">
                    <form class="layui-form layui-form-pane" id="searchForm">
                        <div class="layui-form-item" pane>
                            <label class="layui-form-label">发送给</label>
                            <div class="layui-input-block">
                                <input type="radio" name="receiveUserId" value="路飞" title="路飞" checked>
                                <input type="radio" name="receiveUserId" value="索隆" title="索隆">
                                <input type="radio" name="receiveUserId" value="艾斯" title="艾斯">
                            </div>
                        </div>
                        <div class="layui-form-item layui-form-text">
                            <div class="layui-input-block">
                                <textarea placeholder="请输入需要发送的消息" class="layui-textarea" name="msg" ></textarea>
                            </div>
                        </div>
                        <div class="layui-form-item">
                            <button class="layui-btn" lay-submit="" lay-filter="add" >发送消息</button>
                        </div>
                    </form>
                </div>
            </div>
        </div>
        <div class="layui-col-md6">
            <div class="layui-card">
                <div class="layui-card-header">消息接收面板</div>
                <div class="layui-card-body">
                    <span id="content"></span>
                </div>
            </div>
        </div>
    </div>
</div>



</body>
<script th:inline="javascript">
    layui.use('form', function () {

        var $ = layui.jquery,form = layui.form;
        const urlParams = new URLSearchParams(window.location.search);
        const sendUserId = urlParams.get('sendUserId');
        const receiveUserId = urlParams.get('receiveUserId');
        $("#sender").html(sendUserId)

        form.on('submit(add)', function (data) {
            let param = {userId:sendUserId}
            Object.assign(param,data.field);
            Common.ajaxFormSubmit('/websocket/send', param, function (data) {
                layer.msg('消息已发送')
            });
            return false;
        });
        let webSocket = null;
        if ('WebSocket' in window){
            webSocket = new WebSocket("ws://localhost:8888/mos/websocket/"+sendUserId);
        }else{
            layer.msg('您的浏览器不支持websocket')
        }
        webSocket.onopen = function () {
            layer.msg('连接成功')
        }
        webSocket.onerror = function (error) {
            layer.msg('连接失败',error)
        }
        webSocket.onclose = function () {
            layer.msg('连接关闭')
        }
        webSocket.onmessage = function (event) {
            $("#content").html(event.data)
        }

    });
</script>
</html>

其他说明

  1. 没有进行鉴权,需要视具体项目情况而定
  2. 默认三个会话都已创建,否则会报“ because "session" is null”的错,只是简单演示使用,实际项目可能还需要考虑接收方离线时怎么办等等。
  3. 代码已上传gitee,需要的童鞋可以自行获取。
    MosSimple: 功能示例 (gitee.com)
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342

推荐阅读更多精彩内容