当前位置:   article > 正文

Netty下的WebSocket心跳检测_netty websocket 心跳

netty websocket 心跳

什么是心跳检测

心跳机制是定时发送一个自定义的结构体(心跳包),让对方知道自己还活着,以确保连接的有效性的机制。

在WebSocket中即判断套接字是否已经与服务器断开,无法使用,此时要清理服务器的该套接字进程以免浪费资源。

心跳包就是客户端定时发送简单的信息给服务器端告诉它还在正常运行。

实例

比如针对客户端每个连接,服务器都会接收并存入一个容器进行统一管理。

客户端的正常结束,服务器会自动清理。

但某些特殊情况下,服务器无法识别。比如打开飞行模式后,关闭客户端,关闭飞行模式,重新打开客户端,

此时容器中并没有清理客户端,而此时又创建了一个客户端连接。

实现

首先创建一个handler,实现心跳。仅检测读写空闲

  1. import io.netty.channel.*;
  2. import io.netty.handler.timeout.IdleState;
  3. import io.netty.handler.timeout.IdleStateEvent;
  4. /**
  5. * @Author Sakura
  6. * @Date 5/8/2019
  7. * 用于检测channel心跳的handler
  8. **/
  9. public class HeartBeatHandler extends ChannelInboundHandlerAdapter {
  10. @Override
  11. public void userEventTriggered(ChannelHandlerContext ctx, Object evt) throws Exception {
  12. //判断evt是否是IdleStateEvent(用于触发用户事件,包含读空闲/写空闲/读写空闲)
  13. if(evt instanceof IdleState){
  14. IdleStateEvent idleStateEvent = (IdleStateEvent) evt;
  15. if(idleStateEvent.state() == IdleState.READER_IDLE){
  16. System.out.println("进入读空闲...");
  17. }else if(idleStateEvent.state() == IdleState.WRITER_IDLE){
  18. System.out.println("进入写空闲...");
  19. }else if(idleStateEvent.state() == IdleState.ALL_IDLE){
  20. System.out.println("进入读写空闲...");
  21. Channel channel = ctx.channel();
  22. //关闭无用channel,避免浪费资源
  23. channel.close();
  24. }
  25. }
  26. }
  27. }

后在初始化器中添加handler

  1. package com.imooc.netty;
  2. import io.netty.channel.ChannelInitializer;
  3. import io.netty.channel.ChannelPipeline;
  4. import io.netty.channel.socket.SocketChannel;
  5. import io.netty.handler.codec.http.HttpObjectAggregator;
  6. import io.netty.handler.codec.http.HttpServerCodec;
  7. import io.netty.handler.codec.http.websocketx.WebSocketServerProtocolHandler;
  8. import io.netty.handler.stream.ChunkedWriteHandler;
  9. import io.netty.handler.timeout.IdleStateHandler;
  10. /**
  11. * @Author Sakura
  12. * @Date 5/8/2019
  13. **/
  14. public class WSServerInitializer extends ChannelInitializer<SocketChannel> {
  15. protected void initChannel(SocketChannel socketChannel) throws Exception {
  16. ChannelPipeline pipeline = socketChannel.pipeline();
  17. //=============================增加心跳支持============================
  18. //对客户端,如果在60秒内没有向服务端发送心跳,就主动断开
  19. //三个参数分别为读//读写的空闲,我们只针对读写空闲检测
  20. pipeline.addLast(new IdleStateHandler(2,4,60));
  21. pipeline.addLast(new HeartBeatHandler());
  22. }
  23. }

初始化器是在ServerBootstrap里启动的

  1. package com.imooc.netty;
  2. import io.netty.bootstrap.ServerBootstrap;
  3. import io.netty.channel.ChannelFuture;
  4. import io.netty.channel.EventLoopGroup;
  5. import io.netty.channel.nio.NioEventLoopGroup;
  6. import io.netty.channel.socket.nio.NioServerSocketChannel;
  7. import org.springframework.context.annotation.ComponentScan;
  8. import org.springframework.stereotype.Component;
  9. /**
  10. * @Author Sakura
  11. * @Date 5/8/2019
  12. **/
  13. @Component
  14. public class WSServer {
  15. public static class SingletionWSServer{
  16. static final WSServer instance = new WSServer();
  17. }
  18. public static WSServer getInstance(){
  19. return SingletionWSServer.instance;
  20. }
  21. private EventLoopGroup mainGroup;
  22. private EventLoopGroup subGroup;
  23. private ServerBootstrap server;
  24. private ChannelFuture future;
  25. public WSServer(){
  26. mainGroup = new NioEventLoopGroup();
  27. subGroup = new NioEventLoopGroup();
  28. server = new ServerBootstrap();
  29. server.group(mainGroup,subGroup)
  30. .channel(NioServerSocketChannel.class)
  31. .childHandler(new WSServerInitializer());
  32. }
  33. public void start(){
  34. this.future = server.bind(8088);
  35. System.err.println("netty websocket server 启动完毕...");
  36. }
  37. }

接着在前端的WebSocket的onopen事件中定时发送一条数据就好了,对该数据不做处理,让服务器知道有请求发送,客户端还在就好了。

  1. //后端每60秒检测一次,这里只要小于60秒就行了
  2. socket.onopen:function(){
  3. setInterval("CHAT.keepalive()", 50000);
  4. }
  5. keepalive: function() {
  6. // 构建对象
  7. var dataContent = "test alive";
  8. // 发送心跳
  9. socket.send(dataContent);
  10. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/242144?site
推荐阅读
相关标签
  

闽ICP备14008679号