欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

SpringBoot WebSocket实时监控异常的详细流程

程序员文章站 2022-08-06 20:48:08
目录写在前面此异常非彼异常,标题所说的异常是业务上的异常。最近做了一个需求,消防的设备巡检,如果巡检发现异常,通过手机端提交,后台的实时监控页面实时获取到该设备的信息及位置,然后安排员工去处理。因为需...

写在前面

此异常非彼异常,标题所说的异常是业务上的异常。

最近做了一个需求,消防的设备巡检,如果巡检发现异常,通过手机端提交,后台的实时监控页面实时获取到该设备的信息及位置,然后安排员工去处理。

因为需要服务端主动向客户端发送消息,所以很容易的就想到了用websocket来实现这一功能。

websocket就不做介绍了,上链接:https://developer.mozilla.org/zh-cn/docs/web/api/websocket

前端略微复杂,需要在一张位置分布图上进行鼠标描点定位各个设备和根据不同屏幕大小渲染,本文不做介绍,只是简单地用页面样式进行效果呈现。

绿色代表正常,红色代表异常

预期效果,未接收到请求前----->id为3的提交了异常,id为3的王五变成了红色

SpringBoot WebSocket实时监控异常的详细流程    SpringBoot WebSocket实时监控异常的详细流程

实现:

前端:

直接贴代码

<!doctype html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>实时监控</title>
    </head>
    <style>
        .item {
            display: flex;
            border-bottom: 1px solid #000000;
            justify-content: space-between;
            width: 30%;
            line-height: 50px;
            height: 50px;
        }

        .item span:nth-child(2){
            margin-right: 10px;
            margin-top: 15px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #55ff00;
        }
        .nowi{
            background: #ff0000 !important;
        }
    </style>
    <body>
        <div id="app">
            <div v-for="item in list" class="item">
                <span>{{item.id}}.{{item.name}}</span>
                <span :class='item.state==-1?"nowi":""'></span>
            </div>
        </div>
    </body>
    <script src="./js/vue.min.js"></script>
    <script type="text/javascript">
        var vm = new vue({
            el: "#app",
            data: {
                list: [{
                        id: 1,
                        name: '张三',
                        state: 1
                    },
                    {
                        id: 2,
                        name: '李四',
                        state: 1
                    },
                    {
                        id: 3,
                        name: '王五',
                        state: 1
                    },
                    {
                        id: 4,
                        name: '韩梅梅',
                        state: 1
                    },
                    {
                        id: 5,
                        name: '李磊',
                        state: 1
                    },
                ]
            }
        })

        var websocket = null;
        if ('websocket' in window) {
            //创建websocket对象
            websocket = new websocket("ws://localhost:18801/websocket/" + getuuid());

            //连接成功
            websocket.onopen = function() {
                console.log("已连接");
                websocket.send("消息发送测试")
            }
            //接收到消息
            websocket.onmessage = function(msg) {
                //处理消息
                var servermsg = msg.data;
                var t_id = parseint(servermsg)    //服务端发过来的消息,id,string需转化为int类型才能比较
                for (var i = 0; i < vm.list.length; i++) {
                    var item = vm.list[i];
                    if(item.id == t_id){
                        item.state = -1;
                        vm.list.splice(i,1,item)
                        break;
                    }
                }
            };

            //关闭事件
            websocket.onclose = function() {
                console.log("websocket已关闭");
            };
            //发生了错误事件
            websocket.onerror = function() {
                console.log("websocket发生了错误");
            }
        } else {
            alert("很遗憾,您的浏览器不支持websocket!")
        }

        function getuuid() {    //获取唯一的uuid
            return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {

                var r = math.random() * 16 | 0,
                    v = c == 'x' ? r : (r & 0x3 | 0x8);
                return v.tostring(16);
            });
        }
    </script>
</html>

后端:

项目结构是这样子的,后面的代码关键注释都有,就不重复描述了

SpringBoot WebSocket实时监控异常的详细流程

1、新建springboot工程,选择web和websocket依赖

SpringBoot WebSocket实时监控异常的详细流程

2、配置application.yml

#端口
server:
  port: 18801

#密码,因为接口不需要权限,所以加了个密码做校验
mysocket:
  mypwd: jae_123

3、websocketconfig配置类

@configuration
public class websocketconfig {

    /**
     * 注入一个serverendpointexporter,该bean会自动注册使用@serverendpoint注解申明的websocket endpoint
     */
    @bean
    public serverendpointexporter serverendpointexporter(){
        return new serverendpointexporter();
    }
}

4、websocketserver类,用来进行服务端和客户端之间的交互

/**
 * @author jae
 * @serverendpoint("/websocket/{uid}") 前端通过此uri与后端建立链接
 */

@serverendpoint("/websocket/{uid}")
@component
public class websocketserver {

    private static logger log = loggerfactory.getlogger(websocketserver.class);

    //静态变量,用来记录当前在线连接数。应该把它设计成线程安全的。
    private static final atomicinteger onlinenum = new atomicinteger(0);

    //concurrent包的线程安全set,用来存放每个客户端对应的websocketserver对象。
    private static copyonwritearrayset<session> sessionpools = new copyonwritearrayset<session>();

    /**
     * 有客户端连接成功
     */
    @onopen
    public void onopen(session session, @pathparam(value = "uid") string uid){
        sessionpools.add(session);
        onlinenum.incrementandget();
        log.info(uid + "加入websocket!当前人数为" + onlinenum);
    }

    /**
     * 连接关闭调用的方法
     */
    @onclose
    public void onclose(session session) {
        sessionpools.remove(session);
        int cnt = onlinenum.decrementandget();
        log.info("有连接关闭,当前连接数为:{}", cnt);
    }

    /**
     * 发送消息
     */
    public void sendmessage(session session, string message) throws ioexception {
        if(session != null){
            synchronized (session) {
                session.getbasicremote().sendtext(message);
            }
        }
    }

    /**
     * 群发消息
     */
    public void broadcastinfo(string message) throws ioexception {
        for (session session : sessionpools) {
            if(session.isopen()){
                sendmessage(session, message);
            }
        }
    }

    /**
     * 发生错误
     */
    @onerror
    public void onerror(session session, throwable throwable){
        log.error("发生错误");
        throwable.printstacktrace();
    }

}

5、websocketcontroller类,用于进行接口测试

@restcontroller
@requestmapping("/open/socket")
public class websocketcontroller {

    @value("${mysocket.mypwd}")
    public string mypwd;

    @autowired
    private websocketserver websocketserver;

    /**
     * 手机客户端请求接口
     * @param id    发生异常的设备id
     * @param pwd   密码(实际开发记得加密)
     * @throws ioexception
     */
    @postmapping(value = "/onreceive")
    public void onreceive(string id,string pwd) throws ioexception {
        if(pwd.equals(mypwd)){  //密码校验一致(这里举例,实际开发还要有个密码加密的校验的),则进行群发
            websocketserver.broadcastinfo(id);
        }
    }

}

测试

1、打开前端页面,进行websocket连接

控制台输出,连接成功

SpringBoot WebSocket实时监控异常的详细流程

2、因为是模拟数据,所以全部显示正常,没有异常提交时的页面呈现

SpringBoot WebSocket实时监控异常的详细流程

3、接下来,我们用接口测试工具postman提交一个异常

SpringBoot WebSocket实时监控异常的详细流程

注意id为3的这个数据的状态变化

SpringBoot WebSocket实时监控异常的详细流程

我们可以看到,id为3的王五状态已经变成异常的了,实时通讯成功。

参考:https://developer.mozilla.org/zh-cn/docs/web/api/websocket

到此这篇关于springboot websocket实时监控异常的文章就介绍到这了,更多相关springboot websocket监控异常内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!