真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

websocket在springboot+vue中的使用教程

1、websocket在springboot中的一種實現(xiàn)

十年的金華網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。成都全網(wǎng)營銷的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整金華建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。成都創(chuàng)新互聯(lián)從事“金華網(wǎng)站設(shè)計”,“金華網(wǎng)站推廣”以來,每個客戶項目都認真落實執(zhí)行。

在java后臺中,websocket是作為一種服務(wù)端配置,其配置如下

@Configuration
public class WebSocketConfig {
  
  @Bean(name="serverEndpointExporter")
  public ServerEndpointExporter getServerEndpointExporterBean(){
    return new ServerEndpointExporter();
  }
}

加入上面的配置之后就可以編輯自己的websocket實現(xiàn)類了,如下

@Component
@ServerEndpoint(value = "/messageSocket/{userId}")
public class MessageWebSocket {
  private static final Logger logger = LoggerFactory.getLogger(MessageWebSocket.class);
  /**
   * 靜態(tài)變量,用來記錄當前在線連接數(shù)。應(yīng)該把它設(shè)計成線程安全的。
   */
  private static int onlineCount = 0;
  /**
   * key: userId value: sessionIds
   */
  private static ConcurrentHashMap> userSessionMap = new ConcurrentHashMap<>();
  /**
   * concurrent包的線程安全Map,用來存放每個客戶端對應(yīng)的MyWebSocket對象。
   */
  private static ConcurrentHashMap websocketMap = new ConcurrentHashMap<>();
  /**
   * key: sessionId value: userId
   */
  private static ConcurrentHashMap sessionUserMap = new ConcurrentHashMap<>();
  /**
   * 當前連接會話,需要通過它來給客戶端發(fā)送數(shù)據(jù)
   */
  private Session session;
  /**
   * 連接建立成功調(diào)用的方法
   * */
  @OnOpen
  public void onOpen(Session session, @PathParam("userId") Integer userId) {
    System.out.println(applicationContext);
    try {
      this.session = session;
      String sessionId = session.getId();
      //建立userId和sessionId的關(guān)系
      if(userSessionMap.containsKey(userId)) {
        userSessionMap.get(userId).add(sessionId);
      }else{
        ConcurrentLinkedQueue queue = new ConcurrentLinkedQueue<>();
        queue.add(sessionId);
        userSessionMap.put(userId, queue);
      }
      sessionUserMap.put(sessionId, userId);
      //建立sessionId和websocket引用的關(guān)系
      if(!websocketMap.containsKey(sessionId)){
        websocketMap.put(sessionId, this);
        addOnlineCount();      //在線數(shù)加1
      }
    }catch (Exception e){
      logger.error("連接失敗");
      String es = ExceptionUtils.getFullStackTrace(e);
      logger.error(es);
    }
  }
  /**
   * 連接關(guān)閉調(diào)用的方法
   */
  @OnClose
  public void onClose() {
    String sessionId = this.session.getId();
    //移除userId和sessionId的關(guān)系
    Integer userId = sessionUserMap.get(sessionId);
    sessionUserMap.remove(sessionId);
    if(userId != null) {
      ConcurrentLinkedQueue sessionIds = userSessionMap.get(userId);
      if(sessionIds != null) {
        sessionIds.remove(sessionId);
        if (sessionIds.size() == 0) {
          userSessionMap.remove(userId);
        }
      }
    }
    //移除sessionId和websocket的關(guān)系
    if (websocketMap.containsKey(sessionId)) {
      websocketMap.remove(sessionId);
      subOnlineCount();      //在線數(shù)減1
    }
  }
  /**
   * 收到客戶端消息后調(diào)用的方法
   *
   * @param messageStr 客戶端發(fā)送過來的消息
   **/
  @OnMessage
  public void onMessage(String messageStr, Session session, @PathParam("userId") Integer userId) throws IOException {
  }
  /**
   *
   * @param session
   * @param error 當連接發(fā)生錯誤時的回調(diào)
   */
  @OnError
  public void onError(Session session, Throwable error) {
    String es = ExceptionUtils.getFullStackTrace(error);
    logger.error(es);
  }
  /**
   * 實現(xiàn)服務(wù)器主動推送
   */
  public void sendMessage(String message, Integer toUserId) throws IOException {
    if(toUserId != null && !StringUtil.isEmpty(message.trim())){
      ConcurrentLinkedQueue sessionIds = userSessionMap.get(toUserId);
      if(sessionIds != null) {
        for (String sessionId : sessionIds) {
          MessageWebSocket socket = websocketMap.get(sessionId);
          socket.session.getBasicRemote().sendText(message);
        }
      }
    }else{
      logger.error("未找到接收用戶連接,該用戶未連接或已斷開");
    }
  }
  public void sendMessage(String message, Session session) throws IOException {
    session.getBasicRemote().sendText(message);
  }
   /**
  *獲取在線人數(shù)
  */
  public static synchronized int getOnlineCount() {
    return onlineCount;
  }
   /**
  *在線人數(shù)加一
  */
  public static synchronized void addOnlineCount() {
    MessageWebSocket.onlineCount++;
  }
  /**
  *在線人數(shù)減一
  */
  public static synchronized void subOnlineCount() {
    MessageWebSocket.onlineCount--;
  }
}

到此后臺服務(wù)端的工作已經(jīng)做好了,前端如何作為客戶端進行連接呢,請繼續(xù)往下看。。

為了實現(xiàn)斷開自動重連,我們使用的reconnecting-websocket.js組件

//websocket連接實例
let websocket = null;
//初始話websocket實例
function initWebSocket(userId) {
  // ws地址 -->這里是你的請求路徑
  let host = urlConfig.wsUrl + 'messageSocket/' + userId;
  if ('WebSocket' in window) {
    websocket = new ReconnectingWebSocket(host);
    // 連接錯誤
    websocket.onerror = function () {
    }
    // 連接成功
    websocket.onopen = function () {
    }
    // 收到消息的回調(diào),e.data為收到的信息
    websocket.onmessage = function (e) {
    }
    // 連接關(guān)閉的回調(diào)
    websocket.onclose = function () {
    }
    //監(jiān)聽窗口關(guān)閉事件,當窗口關(guān)閉時,主動去關(guān)閉websocket連接,防止連接還沒斷開就關(guān)閉窗口,server端會拋異常。
    window.onbeforeunload = function () {
      closeWebSocket();
    }
  } else {
    alert('當前瀏覽器不支持websocket')
    return;
  }
}
//關(guān)閉WebSocket連接
function closeWebSocket() {
  websocket.close();
}
//發(fā)送消息
function sendMessage(message){
  websocket.send(message);
}

至此一個簡易的完整的websocket已經(jīng)完成了,具體功能可以依此為基本進行擴展。

總結(jié)

以上所述是小編給大家介紹的websocket在springboot+vue中的使用教程,希望對大家有所幫助,如果大家有任何疑問歡迎給大家留言,小編會及時回復(fù)大家的!


文章名稱:websocket在springboot+vue中的使用教程
網(wǎng)址分享:http://weahome.cn/article/ijsoho.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部