• springboot整合webSocket(看完即入门)


    webSocket

    1、什么是webSocket?

    WebSocket是一种在单个TCP连接上进行全双工通信的协议。WebSocket使得客户端和服务器之间的数据交换变得更加简单,允许服务端主动向客户端推送数据。在WebSocket API中,浏览器和服务器只需要完成一次握手,两者之间就直接可以创建持久性的连接,并进行双向数据传输

    在这里插入图片描述

    2、webSocket可以用来做什么

    利用双向数据传输的特点可以用来完成很多功能,不需要前端轮询,浪费资源。例如:

    1、通告功能
    2、聊天功能 (如下是逻辑图)
    在这里插入图片描述

    3、实时更新数据功能
    4、弹幕
    等等。。。。。。

    3、webSocket协议

    本协议有两部分:握手和数据传输。
    握手是基于http协议的。

    来自客户端的握手看起来像如下形式:

    GET ws://localhost/chat HTTP/1.1
    Host: localhost
    Upgrade: websocket
    Connection: Upgrade
    Sec-WebSocket-Key:dGhlIHNhbXBsZSBub25jZQ==
    Sec-WebSocket-Protocol: chat,superchat
    Sec-WebSocket-Version: 13
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    来自服务器的握手看起来像如下形式:

    HTTP/1.1 101 Switching Protocols
    Upgrade: websocket
    Connection: Upgrade
    Sec-WebSocket-Accept:s3pPLMBiTxaQ9kYGzzhZRbK+xOo=
    Sec-WebSocket-Protocol: chat
    
    • 1
    • 2
    • 3
    • 4
    • 5

    在这里插入图片描述

    4、服务端

    maven依赖

       
          org.springframework.boot
          spring-boot-starter-websocket
      
    
    • 1
    • 2
    • 3
    • 4

    WebSocket配置类

    mport org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.web.socket.server.standard.ServerEndpointExporter;
    
    @Configuration
    public class WebSocketConfig {
        /**
         * 	注入ServerEndpointExporter,
         * 	这个bean会自动注册使用了@ServerEndpoint注解声明的Websocket endpoint
         */
        @Bean
        public ServerEndpointExporter serverEndpointExporter() {
            return new ServerEndpointExporter();
        }
        
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16

    WebSocket操作类

    通过该类WebSocket可以进行群推送以及单点推送

    import java.util.HashMap;
    import java.util.Map;
    import java.util.concurrent.CopyOnWriteArraySet;
    
    import javax.websocket.OnClose;
    import javax.websocket.OnMessage;
    import javax.websocket.OnOpen;
    import javax.websocket.Session;
    import javax.websocket.server.PathParam;
    import javax.websocket.server.ServerEndpoint;
    
    import org.springframework.stereotype.Component;
    
    import lombok.extern.slf4j.Slf4j;
    
    @Component
    @Slf4j
    @ServerEndpoint("/websocket/{userId}")  // 接口路径 ws://localhost:8087/webSocket/userId;
    
    public class WebSocket {
        
        //与某个客户端的连接会话,需要通过它来给客户端发送数据
        private Session session;
        
        //concurrent包的线程安全Set,用来存放每个客户端对应的MyWebSocket对象。
        //虽然@Component默认是单例模式的,但springboot还是会为每个websocket连接初始化一个bean,所以可以用一个静态set保存起来。
        //  注:底下WebSocket是当前类名
        private static CopyOnWriteArraySet webSockets =new CopyOnWriteArraySet<>();
        // 用来存在线连接数
        private static Map sessionPool = new HashMap();
        
        /**
         * 链接成功调用的方法
         */
        @OnOpen
        public void onOpen(Session session, @PathParam(value="userId")String userId) {
            try {
    			this.session = session;
    			webSockets.add(this);
    			sessionPool.put(userId, session);
    			log.info("【websocket消息】有新的连接,总数为:"+webSockets.size());
    		} catch (Exception e) {
    		}
        }
        
        /**
         * 链接关闭调用的方法
         */
        @OnClose
        public void onClose() {
            try {
    			webSockets.remove(this);
    			log.info("【websocket消息】连接断开,总数为:"+webSockets.size());
    		} catch (Exception e) {
    		}
        }
        /**
         * 收到客户端消息后调用的方法
         *
         * @param message
         * @param session
         */
        @OnMessage
        public void onMessage(String message) {
        	log.info("【websocket消息】收到客户端消息:"+message);
        }
        
    	  /** 发送错误时的处理
         * @param session
         * @param error
         */
        @OnError
        public void onError(Session session, Throwable error) {
    
            log.error("用户错误,原因:"+error.getMessage());
            error.printStackTrace();
        }
    
        
        // 此为广播消息
        public void sendAllMessage(String message) {
        	log.info("【websocket消息】广播消息:"+message);
            for(WebSocket webSocket : webSockets) {
                try {
                	if(webSocket.session.isOpen()) {
                		webSocket.session.getAsyncRemote().sendText(message);
                	}
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
        
        // 此为单点消息
        public void sendOneMessage(String userId, String message) {
            Session session = sessionPool.get(userId);
            if (session != null&&session.isOpen()) {
                try {
                	log.info("【websocket消息】 单点消息:"+message);
                    session.getAsyncRemote().sendText(message);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        }
        
        // 此为单点消息(多人)
        public void sendMoreMessage(String[] userIds, String message) {
        	for(String userId:userIds) {
        		Session session = sessionPool.get(userId);
                if (session != null&&session.isOpen()) {
                    try {
                    	log.info("【websocket消息】 单点消息:"+message);
                        session.getAsyncRemote().sendText(message);
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
        	}
            
        }
        
    }
    
    • 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
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123

    方法调用示例

    注入我们的操作类

    @Resource
    private WebSocket webSocket;
    
    • 1
    • 2

    发送消息给前端

    //创建业务消息信息
    JSONObject obj = new JSONObject();
    obj.put("cmd", "topic");//业务类型
    obj.put("msgId", sysAnnouncement.getId());//消息id
    obj.put("msgTxt", sysAnnouncement.getTitile());//消息内容
    //全体发送
    webSocket.sendAllMessage(obj.toJSONString());		
    //单个用户发送 (userId为用户id)
    webSocket.sendOneMessage(userId, obj.toJSONString());		
    //多个用户发送 (userIds为多个用户id,逗号‘,’分隔)
    webSocket.sendMoreMessage(userIds, obj.toJSONString());
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    5、客户端

    前端中VUE使用WebSocket

    
    
    • 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

    在这里插入图片描述

    接口调用顺序,进来页面 : 先建立连接–》调用websocketonopen方法,链接成功调用的方法
    websocketonmessage方法为接收后端时处理。
    当我们要发送消息给后端时调用websocketsend。
    当我们要关闭连接时调用websocketclose。
    当发现错误时调用websocketonerror。

    浏览器查看日志:
    朝上的绿色箭头是发出去的消息
    朝下的红色箭头是收到的消息
    在这里插入图片描述

    先自我介绍一下,小编13年上师交大毕业,曾经在小公司待过,去过华为OPPO等大厂,18年进入阿里,直到现在。深知大多数初中级java工程师,想要升技能,往往是需要自己摸索成长或是报班学习,但对于培训机构动则近万元的学费,着实压力不小。自己不成体系的自学效率很低又漫长,而且容易碰到天花板技术停止不前。因此我收集了一份《java开发全套学习资料》送给大家,初衷也很简单,就是希望帮助到想自学又不知道该从何学起的朋友,同时减轻大家的负担。添加下方名片,即可获取全套学习资料哦

  • 相关阅读:
    深入理解Istio流量管理的熔断配置
    Go中GUI库fyne
    嘉兴桐乡考证培训-面试高手是这样划分备课时间的!
    牛客网Verilog刷题 | 快速入门-基础语法
    GFS分布式存储
    数学建模学习(76):多目标线性规划模型(理想法、线性加权法、最大最小法),模型敏感性分析
    LNMP环境部署(CentOS7)
    JS语法杂记
    事件对象(Event对象)
    索引失效问题
  • 原文地址:https://blog.csdn.net/m0_67403013/article/details/126115059