NIO网络编程框架Netty

Netty简介

  • Netty是一个异步事件驱动和网络应用程序框架,用于快速开发可维护的高性能服务器和客户端。
  • Netty是一个NIO客户机->服务器框架,它支持快速、简单地开发网络应用程序,如服务器和客户机。它大大简化了网络编程,如TCP和UDP套接字服务器。
  • “快速和简单”并不意味着生成的应用程序将受到可维护性或性能问题的影响。Netty经过精心设计,并积累了许多协议(ftp、smtp、http)的实施经验,以及各种二进制和基于文本的遗留协议。因此Netty成功地找到一种方法,在不妥协的情况下实现了易于开发、性能、稳定性和灵活性。

Dubbo、ZK、RocketMQ、ElasticSearch、Spring5(对HTTP协议的实现)、GRpc、Spark等大型开源项目都在使用Netty作为底层通讯框架。

Netty核心概念

  1. Channel 管道,其是对Socket的封装,其包含了一组API,大大简化了直接与Socket进行操作的复杂性;
  2. EventLoopGroup 是一个EventLoop池,包含很多的EventLoop;
    Netty为每个Channel分配了一个EventLoop,用于处理用户连接请求、对用户请求的处理等所有事件。EventLoop本身只是一个线程驱动,在其生命周期内只会绑定一个线程,让该线程处理一个Channel的所有IO事件。
    一个Channel一旦与一个EventLoop相绑定,那么在Channel的整个生命周期内是不能改变的。一个EventLoop可以与多个Channel相绑定。即Channel与EventLoop关系是n:1,而EventLoop与线程关系是1:1;
  3. ServerBootStrap 用于配置整个Netty代码,将各个组件关联起来。服务端使用的是ServerBootStrap,而客户端使用的则是BootStrap;
  4. ChannelHandler和ChannelPipeline ChannelHandler是对Channel中数据的处理器,这些处理器可以是系统自身定义好的编解码器,也可以是用户自定义的。这些处理器会被统一添加到一个ChannelPipeline对象中,然后按照添加顺序对Channel中的数据进行依次处理;
  5. ChannelFuture Netty中所有I/O操作都是异步的,即操作不会立即得到返回结果,所以Netty中定义了一个ChannelFuture对象作为这个异步操作的“代言人”,表示异步操作本身。如果想获取到该异步操作的返回值,可以通过该异步操作对象的addListener()方法为该异步操作添加监听器,为其注册回调(结果出来立马执行)。
    Netty的异步编程模型都是建立在Future与回调概念上的;

Netty执行流程

在这里插入图片描述

小编用的Netty版本是4.1.29.Final。pom引用netty-all即可。

	<dependency>
		<groupId>io.netty</groupId>
		<artifactId>netty-all</artifactId>
	</dependency>

代码示例

编写程序:客户端连接上服务端后立马向服务端发送一个数据,服务端在接收到数据后会立马向客户端回复一个数据,客户端每收到服务端一个数据后便会再向服务端发送一个数据,如此反复。

  1. 服务端启动类
import io.netty.bootstrap.ServerBootstrap;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelPipeline;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioServerSocketChannel;
import io.netty.handler.codec.string.StringDecoder;
import io.netty.handler.codec.string.StringEncoder;

/**
 * @author: LailaiMonkey
 * @description:
 * @date:Created in 2022/4/10 2:08 下午
 * @modified By:
 */
public class SomeServer {
   
    public static void main(String[] args) throws InterruptedException {
   
        NioEventLoopGroup parentGroup = new NioEventLoopGroup();
        NioEventLoopGroup childGroup = new NioEventLoopGroup();

        try {
   
            ServerBootstrap bootstrap = new ServerBootstrap();
            bootstrap.group(parentGroup, childGroup)
                    .channel(NioServerSocketChannel.class)
                    .childHandler(new ChannelInitializer<SocketChannel>() {
   
                        @Override
                        protected void initChannel(SocketChannel ch) throws Exception {
   
                            ChannelPipeline pipeline = ch.pipeline();
                            // StringDecoder:字符串解码器,将channel中的ByteBuf数据解码成string
                            pipeline.addLast(new StringDecoder());
                            // StringEncoder:字符串编码器,将string编码为为将要发送到channel中的ByteBuf
                            pipeline.addLast(new StringEncoder());
                            pipeline.addLast(new SomeServerHandler());
                        }
                    });
            ChannelFuture future = bootstrap.bind(8888).sync();
            System.out.println("服务器已启动");
            future.channel().closeFuture().sync();
        } finally {
   
            parentGroup.shutdownGracefully();
            childGroup.shutdownGracefully();
        }
    }
}
  1. 自定义服务端处理器
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.ChannelInboundHandlerAdapter;

import java.util.UUID;
import java.util.concurrent.TimeUnit;

/**
 * @author: LailaiMonkey
 * @description:
 * @date:Created in 2022/4/10 2:20 下午
 * @modified By:
 */
public class SomeServerHandler extends ChannelInboundHandlerAdapter {
   

    @Override
    public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
   
        // 将来自于客户端数据显示在服务端控制台
        System.out.println(ctx.channel().remoteAddress() + "," + msg);

        // 向客户端发送数据
        ctx.channel().writeAndFlush("from server:" + UUID.randomUUID().toString());
        TimeUnit.MILLISECONDS.sleep(500);
    }

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
   
        ctx.close();
    }
}
  1. 客户端启动类
import io.netty.bootstrap.Bootstrap;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelInitializer;
import io.netty.channel.ChannelPipeline;
import io.netty.channel.nio.NioEventLoopGroup;
import io.netty.channel.socket.SocketChannel;
import io.netty.channel.socket.nio.NioSocketChannel;
import io.netty.handler.codec.string.StringDecoder;
import io.netty.handler.codec.string.StringEncoder;

/**
 * @author: LailaiMonkey
 * @description:
 * @date:Created in 2022/4/10 2:28 下午
 * @modified By:
 */
public class SomeClient {
   
    public static void main(String[] args) throws InterruptedException {
   
        NioEventLoopGroup group = new NioEventLoopGroup();

        try {
   
            Bootstrap bootstrap = new Bootstrap();
            bootstrap.group(group)
                    .channel(NioSocketChannel.class)
                    .handler(new ChannelInitializer<SocketChannel>() {
   
                        @Override
                        protected void initChannel(SocketChannel ch) throws Exception {
   
                            ChannelPipeline pipeline = ch.pipeline();
                            pipeline.addLast(new StringEncoder());
                            pipeline.addLast(new StringDecoder());
                            pipeline.addLast(new SomeClientHandler());
                        }
                    });
            ChannelFuture future = bootstrap.connect("localhost", 8888).sync();
            future.channel().closeFuture().sync();
        } finally {
   
            group.shutdownGracefully();
        }
    }
}
  1. 自定义客户端处理器
import io.netty.channel.ChannelHandlerContext;
import io.netty.channel.SimpleChannelInboundHandler;

import java.time.LocalDateTime;
import java.util.concurrent.TimeUnit;

/**
 * @author: LailaiMonkey
 * @description:
 * @date:Created in 2022/4/10 2:34 下午
 * @modified By:
 */
public class SomeClientHandler extends SimpleChannelInboundHandler<String> {
   

    // msg消息类型与类中泛型类型一致
    @Override
    protected void channelRead0(ChannelHandlerContext ctx, String msg) throws Exception {
   
        System.out.println(ctx.channel().remoteAddress() + "," + msg);
        ctx.channel().writeAndFlush("from client:" + LocalDateTime.now());
        TimeUnit.MILLISECONDS.sleep(500);
    }

    // 当channel被激活会触发该方法执行(没有该方法服务端等客户端发消息,客户端等服务端发消息)
    @Override
    public void channelActive(ChannelHandlerContext ctx) throws Exception {
   
        ctx.channel().writeAndFlush("from client: begin talking");
    }

    @Override
    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
   
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值