玩转springboot2.x之整合webSocket篇

版权声明:本文为博主原创文章,遵循 CC 4.0 by-sa 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/ljk126wy/article/details/82814086

关于webSocket是什么我在这里不做过多的阐述 请参看文档:https://www.cnblogs.com/fuqiang88/p/5956363.html进行了解

我们直接进入实在代码让你来感受他是个什么东东。

首先第一步需要我们引入websocket的依赖

   
        org.springframework.boot
        spring-boot-starter-websocket
   

如果使用外置的tomcat 需要引入javaee-api 我们这里不引入是因为我们使用的是内置的tomcat,spring-boot 内置tomcat 包含拉javaee-api 。

第二步配置webSocket 配置信息 也就是配置webSocket 服务端点

    package cn.lijunkui.springbootlearn.socket.config;
     
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    import org.springframework.stereotype.Component;
    import org.springframework.web.socket.server.standard.ServerEndpointExporter;
     
    import javax.websocket.server.ServerEndpoint;
     
    @Configuration
    public class WebSocketConfig {
        @Bean
        public ServerEndpointExporter serverEndpointExporter(){
            return new ServerEndpointExporter();
        }
    }

第三步 开发接受和处理消息的处理类

    package cn.lijunkui.springbootlearn.socket;
     
    import org.springframework.stereotype.Controller;
     
    import javax.websocket.*;
    import javax.websocket.server.ServerEndpoint;
    import java.io.IOException;
    import java.util.concurrent.CopyOnWriteArraySet;
     
    @Controller
    @ServerEndpoint("/websocket")
    public class Socket {
        /*websocket 客户端会话 通过Session 向客户端发送数据*/
        private Session session;
        /*线程安全set 存放每个客户端处理消息的对象*/
        private static CopyOnWriteArraySet webSocketSet = new CopyOnWriteArraySet();
        /*websocket 连接建立成功后进行调用*/
        @OnOpen
        public void onOpen(Session session) {
            this.session = session;
            webSocketSet.add(this);
            System.out.println("websocket 有新的链接"+webSocketSet.size());
        }
        /*websocket 链接关闭调用的方法*/
        @OnClose
        public void onClose() {
            webSocketSet.remove(this);
        }
        /*收到客户端消息后调用的方法*/
        @OnMessage
        public void onMessage(String message) throws IOException {
            for (Socket socket : webSocketSet) {
                socket.session.getBasicRemote().sendText("自己嘎给自己嘎发的消息:"+message);
            }
        }
        /*websocket 发生错误时进行调用*/
        @OnError
        public void onError(Session session,Throwable error){
            error.printStackTrace();
        }
        public void sendMessage(String message) throws IOException {
            for (Socket socket : webSocketSet) {
                socket.session.getBasicRemote().sendText(message);
            }
        }
        public Session getSession() {
            return session;
        }
        public void setSession(Session session) {
            this.session = session;
        }
    }

第四部编写客户端访问页面 socket.html

   
   
   
       
        socket demo
   
   
       

学说话的tom 猫


       


       
    

     
   
   
   

第五步编写通过后台发送消息的Controller

    package cn.lijunkui.springbootlearn.socket;
     
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RequestMapping;
    import org.springframework.web.bind.annotation.RestController;
     
    import java.io.IOException;
     
    @RestController
    @RequestMapping("socket")
    public class SocketTestController {
        @Autowired
        private Socket socket;
        @GetMapping("/{message}")
        public void sendMessage(@PathVariable("message") String message) throws IOException {
            socket.sendMessage("这个是controller 发送的消息:"+message);
        }
    }

第六步 编写通过后台进行消息的发送controllerTest.html

   
   
   
       
        Title
   
   
   

通过controller 进行发送消息


   
   
   
   

好啦代码部分编写完毕 接下来我们开始进行测试

启动springBoot

第二步打开游览器 访问socket.html

发送消息:

访问controller 发送测试页面

发送消息


---------------------
版权声明:本文为CSDN博主「IT乌托邦-桌前明月」的原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/ljk126wy/article/details/82814086

你可能感兴趣的:(玩转springboot2.x之整合webSocket篇)