SpringBoot及SpringCloud實現(xiàn)webSocket群發(fā)及單點發(fā)送

引入3個文件

1.WebSocketConfig

package com.eastops.system.Interceptor;

import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.socket.server.standard.ServerEndpointExporter;

@Configuration
public class WebSocketConfig {

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

2.WebSocketServer

package com.eastops.system.Interceptor;


import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.eastops.common.core.utils.StringUtils;
import com.eastops.common.log.annotation.Log;
import com.eastops.system.controller.AppVersionController;
import org.apache.catalina.User;
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.io.IOException;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

@ServerEndpoint("/imserver/{userId}")
@Component
public class WebSocketServer {

    private  static final Logger log = LoggerFactory.getLogger(WebSocketServer.class);

    /**靜態(tài)變量汹胃,用來記錄當前在線連接數(shù)。應(yīng)該把它設(shè)計成線程安全的境蔼。*/
    private static int onlineCount = 0;
    /**concurrent包的線程安全Set驰凛,用來存放每個客戶端對應(yīng)的MyWebSocket對象北专。*/
    private static ConcurrentHashMap<String,WebSocketServer> webSocketMap = new ConcurrentHashMap<>();
    /**與某個客戶端的連接會話阎姥,需要通過它來給客戶端發(fā)送數(shù)據(jù)*/
    private Session session;
    /**接收userId*/
    private String userId="";

    /**
     * 連接建立成功調(diào)用的方法*/
    @OnOpen
    public void onOpen(Session session, @PathParam("userId") String userId) {
        this.session = session;
        this.userId=userId;
        if(webSocketMap.containsKey(userId)){
            webSocketMap.remove(userId);
            webSocketMap.put(userId,this);
            //加入set中
        }else{
            webSocketMap.put(userId,this);
            //加入set中
            addOnlineCount();
            //在線數(shù)加1
        }

        log.info("用戶連接:"+userId+",當前在線人數(shù)為:" + getOnlineCount());

        try {
            sendMessage("連接成功");
        } catch (IOException e) {
            log.error("用戶:"+userId+",網(wǎng)絡(luò)異常!!!!!!");
        }
    }

    /**
     * 連接關(guān)閉調(diào)用的方法
     */
    @OnClose
    public void onClose() {
        if(webSocketMap.containsKey(userId)){
            webSocketMap.remove(userId);
            //從set中刪除
            subOnlineCount();
        }
        log.info("用戶退出:"+userId+",當前在線人數(shù)為:" + getOnlineCount());
    }

    /**
     * 收到客戶端消息后調(diào)用的方法
     *
     * @param message 客戶端發(fā)送過來的消息*/
    @OnMessage
    public void onMessage(String message, Session session) {
        log.info("用戶消息:"+userId+",報文:"+message);
        //可以群發(fā)消息
        //消息保存到數(shù)據(jù)庫捐凭、redis
        if(StringUtils.isNotBlank(message)){
            try {
                //解析發(fā)送的報文
                JSONObject jsonObject = JSON.parseObject(message);
                //追加發(fā)送人(防止串改)
                jsonObject.put("fromUserId",this.userId);
                String toUserId=jsonObject.getString("toUserId");
                //傳送給對應(yīng)toUserId用戶的websocket
                if(StringUtils.isNotBlank(toUserId)&&webSocketMap.containsKey(toUserId)){
                    webSocketMap.get(toUserId).sendMessage(jsonObject.toJSONString());
                }else{
                    log.error("請求的userId:"+toUserId+"不在該服務(wù)器上");
                    //否則不在這個服務(wù)器上拨扶,發(fā)送到mysql或者redis
                }
            }catch (Exception e){
                e.printStackTrace();
            }
        }
    }

    /**
     *
     * @param session
     * @param error
     */
    @OnError
    public void onError(Session session, Throwable error) {
        log.error("用戶錯誤:"+this.userId+",原因:"+error.getMessage());
        error.printStackTrace();
    }
    /**
     * 實現(xiàn)服務(wù)器主動推送
     */
    public void sendMessage(String message) throws IOException {
        this.session.getBasicRemote().sendText(message);
    }



    /**
     * 群發(fā)消息
     * @param message
     * @throws IOException
     */
    public static void BroadCastInfo(String message) throws IOException {

        for (Map.Entry<String, WebSocketServer> stringWebSocketServerEntry : webSocketMap.entrySet()) {

            stringWebSocketServerEntry.getValue().sendMessage(message);

        }




//         ------     形式2    -------
//        webSocketMap.forEach((k,v) -> {
//            try {
//                v.sendMessage(message);
//            } catch (IOException e) {
//                e.printStackTrace();
//            }
//        });
    }



    /**
     * 發(fā)送自定義消息
     * */
    public static void sendInfo(String message,@PathParam("userId") String userId) throws IOException {
        log.info("發(fā)送消息到:"+userId+",報文:"+message);
        if(StringUtils.isNotBlank(userId)&&webSocketMap.containsKey(userId)){
            webSocketMap.get(userId).sendMessage(message);
        }else{
            log.error("用戶"+userId+",不在線茁肠!");
        }
    }

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

    public static synchronized void addOnlineCount() {
        WebSocketServer.onlineCount++;
    }

    public static synchronized void subOnlineCount() {
        WebSocketServer.onlineCount--;
    }
}

3患民、SendPassagesController

package com.eastops.system.controller.screen;

import com.eastops.system.Interceptor.WebSocketServer;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;

import java.io.IOException;

@RestController
public class SendPassagesController {

    @GetMapping("index")
    public ResponseEntity<String> index(){
        return ResponseEntity.ok("請求成功");
    }

    @GetMapping("page")
    public ModelAndView page(){
        return new ModelAndView("websocket");
    }

    /**
     * 定點單發(fā)
     * @param message
     * @param toUserId
     * @return
     * @throws IOException
     */
    @RequestMapping("/push/{toUserId}")
    public ResponseEntity<String> pushToWeb(String message, @PathVariable String toUserId) throws IOException {
        WebSocketServer.sendInfo(message,toUserId);
        return ResponseEntity.ok("MSG SEND SUCCESS");
    }

    /**
     * 群發(fā)
     * @param msg
     * @throws IOException
     */
    @RequestMapping("/broadcast")
    public void broadcast(String msg) throws IOException {

    WebSocketServer.BroadCastInfo(msg);

    }

}


4.前端頁面 (注意改一下)


1631525617(1).jpg
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>websocket通訊</title>
</head>
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.js"></script>
<script>
  var socket;
  function openSocket() {
    if(typeof(WebSocket) == "undefined") {
      console.log("您的瀏覽器不支持WebSocket");
    }else{
      console.log("您的瀏覽器支持WebSocket");
      //實現(xiàn)化WebSocket對象,指定要連接的服務(wù)器地址與端口  建立連接
      //等同于socket = new WebSocket("ws://localhost:8888/xxxx/im/25");
      //var socketUrl="${request.contextPath}/im/"+$("#userId").val();
      var socketUrl="http://localhost:8080/system/imserver/"+$("#userId").val();
      socketUrl=socketUrl.replace("https","ws").replace("http","ws");
      console.log(socketUrl);
      if(socket!=null){
        socket.close();
        socket=null;
      }
      socket = new WebSocket(socketUrl);
      //打開事件
      socket.onopen = function() {
        console.log("websocket已打開");
        //socket.send("這是來自客戶端的消息" + location.href + new Date());
      };
      //獲得消息事件
      socket.onmessage = function(msg) {
        console.log(msg.data);
        //發(fā)現(xiàn)消息進入    開始處理前端觸發(fā)邏輯
      };
      //關(guān)閉事件
      socket.onclose = function() {
        console.log("websocket已關(guān)閉");
      };
      //發(fā)生了錯誤事件
      socket.onerror = function() {
        console.log("websocket發(fā)生了錯誤");
      }
    }
  }
  function sendMessage() {
    if(typeof(WebSocket) == "undefined") {
      console.log("您的瀏覽器不支持WebSocket");
    }else {
      console.log("您的瀏覽器支持WebSocket");
      console.log('{"toUserId":"'+$("#toUserId").val()+'","contentText":"'+$("#contentText").val()+'"}');
      socket.send('{"toUserId":"'+$("#toUserId").val()+'","contentText":"'+$("#contentText").val()+'"}');
    }
  }
</script>
<body>
<p>【userId】:<div><input id="userId" name="userId" type="text" value="10"></div>
<p>【toUserId】:<div><input id="toUserId" name="toUserId" type="text" value="20"></div>
<p>【toUserId】:<div><input id="contentText" name="contentText" type="text" value="hello websocket"></div>
<p>【操作】:<div><a onclick="openSocket()">開啟socket</a></div>
<p>【操作】:<div><a onclick="sendMessage()">發(fā)送消息</a></div>
</body>

</html>

vue版本自行百度

1631525835(1).jpg

后端向前端推送數(shù)據(jù)


1631525868(1).jpg

1631525907(1).jpg
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末垦梆,一起剝皮案震驚了整個濱河市匹颤,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌托猩,老刑警劉巖印蓖,帶你破解...
    沈念sama閱讀 206,602評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異京腥,居然都是意外死亡赦肃,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,442評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來他宛,“玉大人船侧,你說我怎么就攤上這事√鳎” “怎么了镜撩?”我有些...
    開封第一講書人閱讀 152,878評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長队塘。 經(jīng)常有香客問我袁梗,道長,這世上最難降的妖魔是什么憔古? 我笑而不...
    開封第一講書人閱讀 55,306評論 1 279
  • 正文 為了忘掉前任遮怜,我火速辦了婚禮,結(jié)果婚禮上投放,老公的妹妹穿的比我還像新娘奈泪。我一直安慰自己,他們只是感情好灸芳,可當我...
    茶點故事閱讀 64,330評論 5 373
  • 文/花漫 我一把揭開白布涝桅。 她就那樣靜靜地躺著,像睡著了一般烙样。 火紅的嫁衣襯著肌膚如雪冯遂。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,071評論 1 285
  • 那天谒获,我揣著相機與錄音蛤肌,去河邊找鬼。 笑死批狱,一個胖子當著我的面吹牛裸准,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播赔硫,決...
    沈念sama閱讀 38,382評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼炒俱,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了爪膊?” 一聲冷哼從身側(cè)響起权悟,我...
    開封第一講書人閱讀 37,006評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎推盛,沒想到半個月后峦阁,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,512評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡耘成,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,965評論 2 325
  • 正文 我和宋清朗相戀三年榔昔,在試婚紗的時候發(fā)現(xiàn)自己被綠了驹闰。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,094評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡撒会,死狀恐怖疮方,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情茧彤,我是刑警寧澤,帶...
    沈念sama閱讀 33,732評論 4 323
  • 正文 年R本政府宣布疆栏,位于F島的核電站曾掂,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏壁顶。R本人自食惡果不足惜珠洗,卻給世界環(huán)境...
    茶點故事閱讀 39,283評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望若专。 院中可真熱鬧许蓖,春花似錦、人聲如沸调衰。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,286評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽嚎莉。三九已至米酬,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間趋箩,已是汗流浹背赃额。 一陣腳步聲響...
    開封第一講書人閱讀 31,512評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留叫确,地道東北人跳芳。 一個月前我還...
    沈念sama閱讀 45,536評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像竹勉,于是被迫代替她去往敵國和親飞盆。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,828評論 2 345

推薦閱讀更多精彩內(nèi)容