13.websocket聊天練習

1.新建springboot模塊

2.添加pom依賴

<dependency>
            <groupId>com.spring4all</groupId>
            <artifactId>swagger-spring-boot-starter</artifactId>
            <version>1.8.0.RELEASE</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-websocket</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

3.建兩個包,項目結(jié)構(gòu)如下圖

項目結(jié)構(gòu)圖.png
  • WebSocketConfig類
package com.soft1721.websocket.websocket.config;

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

/**
 * WebSocket的配置類
 * 開啟了WebSocket支持
 */
@Configuration
public class WebSocketConfig {

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

}

  • WebSocketServer
package com.soft1721.websocket.websocket.config;

import org.springframework.stereotype.Component;

import javax.websocket.*;
import javax.websocket.server.ServerEndpoint;
import java.io.IOException;
import java.util.concurrent.CopyOnWriteArraySet;

//客戶端向服務(wù)器端建立WebSocket連接的url
@ServerEndpoint("/websocket")
@Component
public class WebSocketServer {

    //靜態(tài)變量,用來記錄當前在線連接數(shù),可選
    private static int onlineCount = 0;

    //concurrent包的線程安全Set,用來存放每個客戶端對應的MyWebSocket對象,必須
    private static CopyOnWriteArraySet<WebSocketServer> webSocketSet
            = new CopyOnWriteArraySet<WebSocketServer>();

    //與某個客戶端的連接會話,需要通過它來給客戶端發(fā)送數(shù)據(jù),必須
    private Session session;


    /**
     * 連接建立成功調(diào)用的方法
     */
    @OnOpen
    public void onOpen(Session session) {
        this.session = session;
        webSocketSet.add(this);     //將客戶端加入set中
        addOnlineCount();           //在線數(shù)加1
        System.out.println("有新窗口開始監(jiān)聽,當前在線人數(shù)為"
                + getOnlineCount());
        try {
            sendMessage("連接成功");
        } catch (IOException e) {
            System.out.println("WebSocket IO異常");
        }
    }

    /**
     * 連接關(guān)閉調(diào)用的方法
     */
    @OnClose
    public void onClose() {
        webSocketSet.remove(this);  //從set中刪除
        subOnlineCount();           //在線數(shù)減1
        System.out.println("有連接關(guān)閉!當前在線人數(shù)為" + getOnlineCount());
    }

    /**
     * 收到客戶端消息后調(diào)用的方法
     *
     * @param message 客戶端發(fā)送過來的消息
     */
    @OnMessage
    public void onMessage(String message, Session session) {
        System.out.println("收到客戶端的信息:" + message);
        //群發(fā)消息
        for (WebSocketServer item : webSocketSet) {
            try {
                item.sendMessage(message);
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    /**
     * @param session
     * @param error
     */
    @OnError
    public void onError(Session session, Throwable error) {
        System.out.println("發(fā)生錯誤");
        error.printStackTrace();
    }

    /**
     * 實現(xiàn)服務(wù)器主動推送
     */
    public void sendMessage(String message) throws IOException {
        this.session.getBasicRemote().sendText(message);
    }


    /**
     * 群發(fā)自定義消息
     */
    public static void sendInfo(String message) throws IOException {
        System.out.println("推送消息內(nèi)容:" + message);
        for (WebSocketServer item : webSocketSet) {
            try {
                item.sendMessage(message);
            } catch (IOException e) {
                continue;
            }
        }
    }

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

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

    public static synchronized void subOnlineCount() {
        WebSocketServer.onlineCount--;
    }
}
  • WebSocketController類
package com.soft1721.websocket.websocket.controller;


import com.soft1721.websocket.websocket.config.WebSocketServer;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

import java.io.IOException;

@RestController
public class WebSocketController {

    //推送數(shù)據(jù)接口
    @GetMapping("/socket/push")
    public String pushMsg(String message) {
        try {
            WebSocketServer.sendInfo(message);
        } catch (IOException e) {
            e.printStackTrace();
        }
        return "success";
    }
}

4.運行swagger為200OK

5.前端代碼

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <link rel="stylesheet" type="text/css" href="css/font-awesome.min.css" />
        <meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
        <meta name="viewport" content="width=device-width,initial-scale=1,maximun-scale=1">
        <!-- Edge模式通知 Windows Internet Explorer 以最高級別的可用模式顯示內(nèi)容 -->
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>websocket示例</title>
        <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
        <style>
            /* 手機 */
        @media only screen and (min-width : 320px) {
            .col-xs-12{
                flex: 0 0 100%;
            }
        }
        
        /* 平板 */
        @media only screen and (min-width : 768px) {
            .col-md-6{
                flex: 0 0 50%;
            }
        }
        
        /* 中等屏幕 */
        @media only screen and (min-width : 992px) {
            .col-lg-4{
                flex: 0 0 33.33%;
            }
        }
        
        /* 寬屏設(shè)備 */
        @media only screen and (min-width : 1200px) {
            .col-xl-3{
                flex: 0 0 25%;
            }
        }
        body{
            background: #A9A9A9;
            opacity: 0.5;
        }
            .message-box {
                position: relative;
                height: 100px;
                width: 200px;
                top: 400px;
                right: -130px;
                border: #000000 1px solid;
                box-shadow: #A9A9A9 0 0 6px 0;
                text-align: center;
            }
            .close-btn {
                float: right;
                font-size: 25px;
                border: none;
                outline: none;
                cursor: pointer;
                background-color: initial;
            }
            .btn-box {
                width: 100%;
                height: 10px;
            }
            p {
                float: left;
                margin-left: 20px;
            }
            .text-box {
                float: left;
                margin-top: 40px;
            }

        </style>
    </head>
    <body>
        <div id="app">
            <ul>
                <li v-for="(message, index) in messages" :key="index">
                    {{message}}
                </li>
            </ul>
            <h3>發(fā)送消息 </h3>
            <input type="text" v-model="sendMsg" />
            <button type="button" @click="send">發(fā)送</button>
            <div v-show="show" class="message-box">
                <div class="btn-box">
                    <button class="close-btn" type="button" @click="close">×</button>
                </div>
                
                   <p>您有新消息:</p>
                    <div class="text-box"><span>{{msg}}</span></div>
            </div>
        </div>

        <script type="text/javascript">
            var socket;
            var app = new Vue({
                el: '#app',
                data: {
                    messages: [],
                    sendMsg: '',
                    show:false,
                    msg:''
                },
                created: function() {
                    var _this = this;
                    //創(chuàng)建WebSocket對象,指定要連接的服務(wù)器地址和端口,建立連接
                    socket = new WebSocket("ws://10.30.164.167:8080/websocket");
                    //打開連接
                    socket.onopen = function() {
                        console.log("Socket已打開");

                    };
                    //獲得服務(wù)端推送的消息
                    socket.onmessage = function(msg) {
                        console.log(msg.data);
                        _this.messages.push(msg.data);
                        console.log(_this.messages);
                        _this.show=true;
                    };
                    //關(guān)閉連接
                    socket.onclose = function() {
                        console.log("Socket已關(guān)閉");
                    };
                    //發(fā)送錯誤
                    socket.onerror = function() {
                        alert("Socket發(fā)生了錯誤");
                    }
                },
                watch: {
                    // 如果 `messages` 發(fā)生改變,這個函數(shù)就會運行
                    messages: function(newMsg, oldMsg) {
                        this.messages = newMsg;
                        this.msg=this.messages[this.messages.length-1]
                        
                        
                    },
                },
                methods: {
                    close:function(){
                        this.show=false;
                    },
                    send: function() {
                        socket.send(this.sendMsg);
                    }
                }
            })
        </script>

    </body>
</html>

6.運行結(jié)果

運行結(jié)果.png
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容