第 242 章 Netty4 组件
从 Camel 版本 2.14 开始提供
Camel 中的 netty4 组件是一个套接字通信组件,基于 Netty 项目版本 4。
Netty 是一个 NIO 客户端服务器框架,能够快速轻松地开发 networkServerInitializerFactory 应用程序,如协议服务器和客户端。
Netty 大大简化了网络编程,如 TCP 和 UDP 套接字服务器。
此 camel 组件支持生成者和消费者端点。
Netty 组件有多个选项,允许对多个 TCP/UDP 通信参数(缓冲大小、keepAlives、tcpNoDelay 等)进行精细控制,并促进 Camel 路由上的 In-Only 和 In-Out 通信。
Maven 用户需要将以下依赖项添加到这个组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-netty4</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
242.1. URI 格式
netty 组件的 URI 方案如下
netty4:tcp://0.0.0.0:99999[?options] netty4:udp://remotehost:99999/[?options]
此组件支持 TCP 和 UDP 的制作者和消费者端点。
您可以在 URI 中附加查询选项,格式为 ?option=value&option=value&…