基于Netty实现可靠消息传递的重发机制详解

2024-06-20 07:20

本文主要是介绍基于Netty实现可靠消息传递的重发机制详解,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

基于Netty实现可靠消息传递的重发机制详解

本文详细介绍了如何使用Netty框架实现可靠的消息传递机制,特别是消息的重发机制。Netty本身没有内置重发功能,但通过定时任务、消息确认和重试策略,我们可以构建一个健壮的重发系统。示例代码包括客户端和服务器端的实现,展示了如何在发送消息失败或未收到确认时进行重发,确保消息可靠传递。这一机制对于需要高可靠性的数据传输应用非常有用。

基本思路

  • 消息发送和重发逻辑:每次发送消息时,记录该消息以及发送时间,并在一定时间内等待响应。如果没有响应,则重新发送该消息,直到达到最大重发次数。
  • 消息确认:服务器接收到消息后,需要返回一个确认消息(ACK),客户端收到ACK后可以认为该消息发送成功。
  • 超时检测:使用定时任务来检测消息是否超时,如果超时则重发。

代码示例

以下是一个实现上述思路的详细代码示例:

1. 客户端代码

首先,定义一个Netty客户端,包含重发机制。

import io.netty.bootstrap.Bootstrap;
import io.netty.channel.*;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioSocketChannel;import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;public class NettyClient {private final String host;private final int port;private final Bootstrap bootstrap;private final EventLoopGroup group;private final ConcurrentHashMap<String, Message> pendingMessages;public NettyClient(String host, int port) {this.host = host;this.port = port;this.group = new NioEventLoopGroup();this.bootstrap = new Bootstrap();this.pendingMessages = new ConcurrentHashMap<>();}public void start() {try {bootstrap.group(group).channel(NioSocketChannel.class).option(ChannelOption.SO_KEEPALIVE, true).handler(new ChannelInitializer<SocketChannel>() {@Overridepublic void initChannel(SocketChannel ch) {ch.pipeline().addLast(new ClientHandler(pendingMessages));}});ChannelFuture future = bootstrap.connect(host, port).sync();future.channel().closeFuture().sync();} catch (Exception e) {e.printStackTrace();} finally {group.shutdownGracefully();}}public void sendMessage(Channel channel, String message) {Message msg = new Message(message, channel);pendingMessages.put(message, msg);channel.writeAndFlush(message);scheduleResend(msg);}private void scheduleResend(Message msg) {ScheduledFuture<?> future = group.schedule(() -> {if (msg.incrementRetryCount() > 3) {System.err.println("Message failed after 3 retries: " + msg.getContent());pendingMessages.remove(msg.getContent());} else {System.out.println("Resending message: " + msg.getContent());msg.getChannel().writeAndFlush(msg.getContent());scheduleResend(msg);}}, 5, TimeUnit.SECONDS);msg.setFuture(future);}public static void main(String[] args) {NettyClient client = new NettyClient("localhost", 8080);client.start();}
}

2. Message 类

Message类用于封装消息和相关的重发信息。

import io.netty.channel.Channel;import java.util.concurrent.ScheduledFuture;public class Message {private final String content;private final Channel channel;private int retryCount;private ScheduledFuture<?> future;public Message(String content, Channel channel) {this.content = content;this.channel = channel;this.retryCount = 0;}public String getContent() {return content;}public Channel getChannel() {return channel;}public int incrementRetryCount() {return ++retryCount;}public void setFuture(ScheduledFuture<?> future) {this.future = future;}public void cancelFuture() {if (future != null) {future.cancel(true);}}
}

3. ClientHandler 类

ClientHandler处理服务器响应和确认消息。

import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;import java.util.concurrent.ConcurrentHashMap;public class ClientHandler extends ChannelInboundHandlerAdapter {private final ConcurrentHashMap<String, Message> pendingMessages;public ClientHandler(ConcurrentHashMap<String, Message> pendingMessages) {this.pendingMessages = pendingMessages;}@Overridepublic void channelRead(ChannelHandlerContext ctx, Object msg) {String response = (String) msg;if (pendingMessages.containsKey(response)) {Message message = pendingMessages.remove(response);message.cancelFuture();System.out.println("Received ACK for message: " + response);} else {System.out.println("Received message from server: " + response);}}@Overridepublic void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {cause.printStackTrace();ctx.close();}
}

4. 服务器代码

服务器简单地返回ACK消息,确认收到客户端的消息。

import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.*;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioServerSocketChannel;public class NettyServer {private final int port;public NettyServer(int port) {this.port = port;}public void start() {EventLoopGroup bossGroup = new NioEventLoopGroup(1);EventLoopGroup workerGroup = new NioEventLoopGroup();try {ServerBootstrap bootstrap = new ServerBootstrap();bootstrap.group(bossGroup, workerGroup).channel(NioServerSocketChannel.class).childHandler(new ChannelInitializer<SocketChannel>() {@Overridepublic void initChannel(SocketChannel ch) {ch.pipeline().addLast(new ServerHandler());}});ChannelFuture future = bootstrap.bind(port).sync();future.channel().closeFuture().sync();} catch (Exception e) {e.printStackTrace();} finally {bossGroup.shutdownGracefully();workerGroup.shutdownGracefully();}}public static void main(String[] args) {NettyServer server = new NettyServer(8080);server.start();}
}

5. ServerHandler 类

ServerHandler处理客户端消息并发送ACK。

import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;public class ServerHandler extends ChannelInboundHandlerAdapter {@Overridepublic void channelRead(ChannelHandlerContext ctx, Object msg) {String message = (String) msg;System.out.println("Received message from client: " + message);ctx.writeAndFlush(message);  // Send ACK}@Overridepublic void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {cause.printStackTrace();ctx.close();}
}

解释

  • 客户端启动:NettyClient启动并连接到服务器。
  • 消息发送和重发:通过sendMessage方法发送消息,并在消息未确认时进行重发。重发的逻辑通过ScheduledFuture实现,每次重发后会重新计划下一次重发,直到达到最大重发次数。
  • 消息确认:客户端在接收到服务器的ACK消息后,取消重发计划并移除待确认的消息。
  • 服务器处理:NettyServer和ServerHandler处理客户端的消息,并简单地返回ACK确认消息。

通过这种方式,我们实现了一个基于Netty的简单消息重发机制。可以根据实际需求进一步扩展和优化,例如添加更多的错误处理、日志记录和不同类型的消息处理。

这篇关于基于Netty实现可靠消息传递的重发机制详解的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1077467

相关文章

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一

Python xmltodict实现简化XML数据处理

《Pythonxmltodict实现简化XML数据处理》Python社区为提供了xmltodict库,它专为简化XML与Python数据结构的转换而设计,本文主要来为大家介绍一下如何使用xmltod... 目录一、引言二、XMLtodict介绍设计理念适用场景三、功能参数与属性1、parse函数2、unpa

mac中资源库在哪? macOS资源库文件夹详解

《mac中资源库在哪?macOS资源库文件夹详解》经常使用Mac电脑的用户会发现,找不到Mac电脑的资源库,我们怎么打开资源库并使用呢?下面我们就来看看macOS资源库文件夹详解... 在 MACOS 系统中,「资源库」文件夹是用来存放操作系统和 App 设置的核心位置。虽然平时我们很少直接跟它打交道,但了

C#实现获得某个枚举的所有名称

《C#实现获得某个枚举的所有名称》这篇文章主要为大家详细介绍了C#如何实现获得某个枚举的所有名称,文中的示例代码讲解详细,具有一定的借鉴价值,有需要的小伙伴可以参考一下... C#中获得某个枚举的所有名称using System;using System.Collections.Generic;usi

Go语言实现将中文转化为拼音功能

《Go语言实现将中文转化为拼音功能》这篇文章主要为大家详细介绍了Go语言中如何实现将中文转化为拼音功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 有这么一个需求:新用户入职 创建一系列账号比较麻烦,打算通过接口传入姓名进行初始化。想把姓名转化成拼音。因为有些账号即需要中文也需要英

C# 读写ini文件操作实现

《C#读写ini文件操作实现》本文主要介绍了C#读写ini文件操作实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、INI文件结构二、读取INI文件中的数据在C#应用程序中,常将INI文件作为配置文件,用于存储应用程序的

关于Maven中pom.xml文件配置详解

《关于Maven中pom.xml文件配置详解》pom.xml是Maven项目的核心配置文件,它描述了项目的结构、依赖关系、构建配置等信息,通过合理配置pom.xml,可以提高项目的可维护性和构建效率... 目录1. POM文件的基本结构1.1 项目基本信息2. 项目属性2.1 引用属性3. 项目依赖4. 构

C#实现获取电脑中的端口号和硬件信息

《C#实现获取电脑中的端口号和硬件信息》这篇文章主要为大家详细介绍了C#实现获取电脑中的端口号和硬件信息的相关方法,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 我们经常在使用一个串口软件的时候,发现软件中的端口号并不是普通的COM1,而是带有硬件信息的。那么如果我们使用C#编写软件时候,如