• WebSocket分析及使用(一)


    前言

    WebSocket,它是一种全双工的协议,在http协议存在的基础上,它有具有什么独特点,能让其在许多地方被广泛使用呢?
    我们可以从RFC标准协议中,看到原因
    在这里插入图片描述
    可以看到,http不断轮询,是一种经常被使用的方案,用来在用户不做任何操作的情况下,网页能收到消息并发生变更,
    微信验证码就是这样一种方案,每次扫完码后的延迟,可能就包含了一次轮询的间歇周期
    但大量轮询,必然会带来性能消耗,而且扫码这种操作,数据量也比较小,
    在客户端与服务器都需要收发大量信息的时候,webscoket就比较合适了,它基于tcp,支持服务器主动向客户端发信息

    实操

    首先我们做一个简单的案例
    这里使用springboot来做,首先创建一个空的springboot项目,如图为项目目录
    在这里插入图片描述

    引入依赖

    首先我们引入websocket的依赖

    <dependency> 
       <groupId>org.springframework.bootgroupId> 
       <artifactId>spring-boot-starter-websocketartifactId> 
     dependency>
    
    • 1
    • 2
    • 3
    • 4

    添加配置类

    这里添加一个websocket的配置类

    @Configuration
    public class WebSocketConfig {
      
        @Bean
        public ServerEndpointExporter serverEndpointExporter() {
            return new ServerEndpointExporter();
        }
    } 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8

    创建服务器端

    可以看到springboot集成的websocket有这些注解,在下面都用得到
    在这里插入图片描述

    @Component
    @Slf4j
    @Service
    @ServerEndpoint("/api/websocket/{sid}")
    public class WebSocketServer {
        private static int onlineCount = 0;
        private static CopyOnWriteArraySet<WebSocketServer> webSocketSet = new CopyOnWriteArraySet<WebSocketServer>();
    
        private Session session;
        private String sid = "";
    
        @OnOpen
        public void onOpen(Session session, @PathParam("sid") String sid) {
            this.session = session;
            webSocketSet.add(this);  //加入set中
            this.sid = sid;
            addOnlineCount();   //在线数加1
            try {
                sendMessage("conn_success");
                log.info("有新窗口开始监听:" + sid + ",当前在线人数为:" + getOnlineCount());
            } catch (IOException e) {
                log.error("websocket IO Exception");
            }
        }
    
    
        @OnClose
        public void onClose() {
            webSocketSet.remove(this); //从set中删除
            subOnlineCount();   //在线数减1
            //断开连接情况下,更新主板占用情况为释放
            log.info("释放的sid为:"+sid);
            //这里写你 释放的时候,要处理的业务
            log.info("有一连接关闭!当前在线人数为" + getOnlineCount());
    
        }
    
        @OnMessage
        public void onMessage(String message, Session session) {
            log.info("收到来自窗口" + sid + "的信息:" + message);
            //群发消息
            for (WebSocketServer item : webSocketSet) {
                try {
                    item.sendMessage(message);
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
    
    
        @OnError
        public void onError(Session session, Throwable error) {
            log.error("发生错误");
            error.printStackTrace();
        }
    
    
        public void sendMessage(String message) throws IOException {
            this.session.getBasicRemote().sendText(message);
        }
    
        public static void sendInfo(String message, @PathParam("sid") String sid) throws IOException {
            log.info("推送消息到窗口" + sid + ",推送内容:" + message);
    
            for (WebSocketServer item : webSocketSet) {
                try {
                    //这里可以设定只推送给这个sid的,为null则全部推送
                    if (sid == null) {
    //     item.sendMessage(message);
                    } else if (item.sid.equals(sid)) {
                        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--;
        }
    
        public static CopyOnWriteArraySet<WebSocketServer> getWebSocketSet() {
            return webSocketSet;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95

    controller配置

    配置前端页面访问地址和websocket连接地址

    
    @Controller("web_Scoket_system")
    @RequestMapping("/api/socket")
    public class SystemController {
    
        @GetMapping("/index/{userId}")
        public ModelAndView socket(@PathVariable String userId) {
            ModelAndView mav = new ModelAndView("/socket1");
            mav.addObject("userId", userId);
            return mav;
        }
    
    
        @ResponseBody
        @RequestMapping("/socket/push/{cid}")
        public Map pushToWeb(@PathVariable String cid, String message) {
            Map<String,Object> result = new HashMap<>();
            try {
                WebSocketServer.sendInfo(message, cid);
                result.put("code", cid);
                result.put("msg", message);
            } catch (IOException e) {
                e.printStackTrace();
            }
            return result;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27

    前端页面

    注意这里的websocket后的地址改成自己的ip地址,https则要用前缀wss

    <html >
    
    <head>
        <meta charset="utf-8">
        <title>springboot整合websockettitle>
        <script type="text/javascript" src="js/jquery.min.js">script>
    head>
    
    <body>
    <div id="main" style="width: 1200px;height:800px;">div>
    Welcome<br/><input id="text" type="text" />
    <button onclick="send()">发送消息button>
    <hr/>
    <button onclick="closeWebSocket()">关闭WebSocket连接button>
    <hr/>
    <div id="message">div>
    body>
    <script type="text/javascript">
        var websocket = null;
        if('WebSocket' in window) {
            websocket = new WebSocket("ws://192.168.152.1:8089/api/websocket/100");
        } else {
            alert('当前浏览器 Not support websocket')
        }
    
    
        websocket.onerror = function() {
            setMessageInnerHTML("WebSocket连接发生错误");
        };
    
    
        websocket.onopen = function() {
            setMessageInnerHTML("WebSocket连接成功");
        }
        var U01data, Uidata, Usdata
    
        websocket.onmessage = function(event) {
            console.log(event);
            setMessageInnerHTML(event);
            setechart()
        }
    
    
        websocket.onclose = function() {
            setMessageInnerHTML("WebSocket连接关闭");
        }
    
    
        window.onbeforeunload = function() {
            closeWebSocket();
        }
    
    
        function setMessageInnerHTML(innerHTML) {
            document.getElementById('message').innerHTML += innerHTML + '
    '
    ; } function closeWebSocket() { websocket.close(); } function send() { var message = document.getElementById('text').value; websocket.send('{"msg":"' + message + '"}'); setMessageInnerHTML(message + " "); }
    script> html>
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71

    运行结果

    在这里插入图片描述
    在这里插入图片描述
    这里看到连接出现错误,一段时间的查找后,发现缺少一个配置类

    添加配置类

    @Configuration
    public class WebSocketConfig {
    
        @Bean
        public ServerEndpointExporter serverEndpointExporter() {
            return new ServerEndpointExporter();
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    在这里插入图片描述

  • 相关阅读:
    ubuntu安装nginx
    《工程伦理》1-13章汇总
    10步开启SAFe敏捷发布列车
    算法复杂度分析中的渐近分析(基于输入大小)
    四旋翼无人机学习第12节--跨页连接符的标号设置、DRC、PDF导出
    java.lang.reflect.InvocationTargetException null,依赖版本,配置文件的地址都对了。但还是出现这个错误。
    关于加密通道规范,你真正用的是TLS,而非SSL
    云课五分钟-0Cg++默认版本和升级-std=c++17
    【Java从入门到精通 04】:Java标识符命名及关键字、保留字
    本地跟单EA安装教程详解
  • 原文地址:https://blog.csdn.net/qq_39167720/article/details/127391984