boot-websocket-log日志工具
boot-websocket-log
spring boot系统中使用websocket技术实时输出系统日志到浏览器端
本项目使用如下相关技术:
1.websocket技术:WebSocket(stopmp服务端),stomp协议,sockjs.min.js,stomp.min.js(stomp客户端),本文使用到的其实就是使用spring boot自带的webSocket模块提供stomp的服务端,前端使用stomp.min.js做stomp的客户端,使用sockjs来链接,前端订阅后端日志端点的消息,后端实时推送,达到日志实时输出到web页面的目的
2. Disruptor 高性能无锁循环队列
此项目使用场景
集成到已有的项目中,实现项目日志文件web端浏览
单独使用,指定已有项目的日志文件位置,实现项目日志web端浏览
使用boot-websocket-log的stopmp服务推送日志其他的非web端消费
web端日志效果
websocket原理
相关技术栈地址
stomp.js客户端:http://jmesnil.net/stomp-websocket/doc/
scok.js客户端:https://github.com/sockjs/sockjs-client
spring webSocket:https://docs.spring.io/spring/docs/
高性能disruptor:https://github.com/LMAX-Exchange/disruptor
评论