美文网首页
19-springboot实现websocket

19-springboot实现websocket

作者: wshsdm | 来源:发表于2022-05-16 15:15 被阅读0次

    1 创建项目,添加依赖库,修改pom.xml

    <dependency>
          <groupId>org.springframework.boot</groupId>
          <artifactId>spring-boot-starter-web</artifactId>
          <version>2.4.2</version>
    </dependency>
    <dependency>
           <groupId>org.projectlombok</groupId>
           <artifactId>lombok</artifactId>
           <version>1.18.20</version>
           <scope>provided</scope>
    </dependency>
      <dependency>
           <groupId>org.springframework.boot</groupId>
           <artifactId>spring-boot-starter-websocket</artifactId>
           <version>2.3.5.RELEASE</version>
      </dependency>
    

    2 创建WebSocket配置类

    package com.demo.cfg;
    
    import org.springframework.context.annotation.Configuration;
    import org.springframework.web.socket.WebSocketHandler;
    import org.springframework.web.socket.config.annotation.EnableWebSocket;
    import org.springframework.web.socket.config.annotation.WebSocketConfigurer;
    import org.springframework.web.socket.config.annotation.WebSocketHandlerRegistry;
    import javax.annotation.Resource;
    
    /**
     * 代码描述: websocket配置类
     *
     * @author wujianping
     * @since 2022/5/16 14:25
     */
    @EnableWebSocket
    @Configuration
    public class WebSocketConfig implements WebSocketConfigurer {
        @Resource
        WebSocketHandler defaultHandler;
        @Override
        public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) {
            registry.addHandler(defaultHandler, "/ws").addInterceptors().setAllowedOrigins("*");
        }
    }
    

    3 创建websocket操作句柄

    package com.demo.handler;
    
    import org.springframework.stereotype.Component;
    import org.springframework.web.socket.CloseStatus;
    import org.springframework.web.socket.WebSocketHandler;
    import org.springframework.web.socket.WebSocketMessage;
    import org.springframework.web.socket.WebSocketSession;
    
    /**
     * 代码描述: 自定义处理器需要实现 WebSocketHandler 接口
     *
     * @author wujianping
     * @since 2022/5/16 14:28
     */
    @Component
    public class DefaultHandler implements WebSocketHandler {
    
        /**
         * 建立连接
         * @param session
         * @throws Exception
         */
        @Override
        public void afterConnectionEstablished(WebSocketSession session) throws Exception {
            // 缓存用户信息: userInfo
        }
    
        /**
         * 接收消息
         * @param session
         * @param message
         * @throws Exception
         */
        @Override
        public void handleMessage(WebSocketSession session, WebSocketMessage<?> message) throws Exception {
        }
    
        /**
         * 发生错误
         * @param session
         * @param exception
         * @throws Exception
         */
        @Override
        public void handleTransportError(WebSocketSession session, Throwable exception) throws Exception {
            // 清除用户缓存信息
        }
    
        /**
         * 关闭连接
         * @param session
         * @param closeStatus
         * @throws Exception
         */
        @Override
        public void afterConnectionClosed(WebSocketSession session, CloseStatus closeStatus) throws Exception {
            // 清除用户缓存信息
        }
    
        @Override
        public boolean supportsPartialMessages() {
            return false;
        }
    }
    

    4 创建拦截器

    package com.demo.handler;
    
    import org.springframework.http.server.ServerHttpRequest;
    import org.springframework.http.server.ServerHttpResponse;
    import org.springframework.stereotype.Component;
    import org.springframework.web.socket.WebSocketHandler;
    import org.springframework.web.socket.server.HandshakeInterceptor;
    
    import java.util.Map;
    
    /**
     * 代码描述: 拦截器可以在 websocket 连接握手阶段做一些校验,还可以存储用户的连接信息,返回 false 拒绝连接,true 则通过
     *
     * @author wujianping
     * @since 2022/5/16 14:29
     */
    @Component
    public class DefaultInterceptor implements HandshakeInterceptor {
        @Override
        public boolean beforeHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Map<String, Object> attributes) throws Exception {
            // TODO
            return false; // [1]
        }
    
        @Override
        public void afterHandshake(ServerHttpRequest request, ServerHttpResponse response, WebSocketHandler wsHandler, Exception exception) {
    
        }
    }
    

    5 创建测试页面

    <!DOCTYPE HTML>
    <html>
       <head>
       <meta charset="utf-8">
       <title>菜鸟教程(runoob.com)</title>
        
          <script type="text/javascript">
             function WebSocketTest()
             {
                if ("WebSocket" in window)
                {
                   console.log("您的浏览器支持 WebSocket!");
                   
                   // 打开一个 web socket
                   var ws = new WebSocket("ws://localhost:7100/ws");
                    
                   ws.onopen = function()
                   {
                      // Web Socket 已连接上,使用 send() 方法发送数据
          //             ws.send("发送数据");
                      console.log("与服务器建立连接成功!")
                   };
                    
                   ws.onmessage = function (evt) 
                   { 
                      var received_msg = evt.data;
                      console.log("接收数据:" + received_msg)
                   };
                    
                   ws.onclose = function()
                   { 
                      // 关闭 websocket
                      alert("连接已关闭..."); 
                   };
                }
                
                else
                {
                   // 浏览器不支持 WebSocket
                   alert("您的浏览器不支持 WebSocket!");
                }
             }
          </script>
            
       </head>
       <body>
       
          <div id="sse">
             <a href="javascript:WebSocketTest()">运行 WebSocket</a>
          </div>      
       </body>
    </html>
    

    相关文章

      网友评论

          本文标题:19-springboot实现websocket

          本文链接:https://www.haomeiwen.com/subject/gmcwurtx.html