Netty入门实践

Posted 算法技术猿

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Netty入门实践相关的知识,希望对你有一定的参考价值。

Netty基础概念

BootstrapServerBootstrap:引导类,提供了一个用于应用程序网络层配置的容器;Bootstrap用于客户端,ServerBootstrap用于服务端,轮询客户端的Bootstrap或DatagramChannel,监听其是否连接到服务器

Channel:底层网络传输API必须提供给应用I/O操作的接口,定义了与 socket 丰富交互的操作集,如bind, close, config, connect, isActive, isOpen, isWritable, read, write等等

ChannelHandler:支持多协议,提供用于数据处理的容器,常用接口ChannelInboundHandler,用来定义处理入站事件的方法,接受到数据后,可在其中进行业务逻辑的处理;

ChannelPipeline:为ChannelHandler链提供一个API,用于管理沿着ChannelHandler链入站和出站的事件;每个 Channel 都有自己的ChannelPipeline,当 Channel 创建时自动创建ChannelPipeline

EventLoop: 用于处理 Channel 的 I/O 操作,一个单一的 EventLoop通常会处理多个 Channel的 I/O 操作;一个 EventLoopGroup 可以可以包含 EventLoop,可以自动检索下一个 EventLoop

ChannelFuture:用于异步接受数据,通过注册ChannelFutureListener来监听数据是否到达

ChannelHandlerContext:ChanneHandler链中,事件可以通过ChanneHandlerContext传递给下一个ChanneHandler;其作用之一是绑定ChannelHandler和ChannelPipeline;

ChannelHandler是如何安装在ChannelPipeline:主要是实现了ChannelHandler 的抽象 ChannelInitializer。ChannelInitializer子类 通过 ServerBootstrap 进行注册。当它的方法 initChannel() 被调用时,这个对象将安装自定义的 ChannelHandler(下文中的EchoServerHandler与EchoClientHandler) 集到 pipeline。当这个操作完成时,ChannelInitializer 子类则 从 ChannelPipeline 自动删除自身。

Netty demo实践

依赖jar包

 
   
   
 
  1. <dependency>

  2.     <groupId>io.netty</groupId>

  3.     <artifactId>netty-all</artifactId>

  4.     <version>4.1.29.Final</version>

  5. </dependency>

服务端代码

EchoServerHandler处理器绑定到Channel的ChannelPipeline

 
   
   
 
  1. /**

  2. * 通过 EchoServerHandler 实例给每一个新的 Channel 初始化

  3. * ChannelHandler.Sharable注解:标识这类的实例之间可以在 channel 里面共享

  4. * @date 2018/9/27

  5. * @description

  6. */

  7. @ChannelHandler.Sharable

  8. public class EchoServerHandler extends ChannelInboundHandlerAdapter{

  9.    /**

  10.     * 每个信息入站都会调用,信息入站后,可在其中处理业务逻辑

  11.     * @param ctx

  12.     * @param msg

  13.     * @throws Exception

  14.     */

  15.    @Override

  16.    public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {

  17.        ByteBuf in = (ByteBuf) msg;

  18.        System.out.println(System.nanoTime() + " server received: " + in.toString(CharsetUtil.UTF_8));

  19.        //将所接受的消息返回给发送者

  20.        ctx.write(in);

  21.    }

  22.    /**

  23.     * 通知处理器最后的 channelread() 是当前批处理中的最后一条消息时调用

  24.     * @param ctx

  25.     * @throws Exception

  26.     */

  27.    @Override

  28.    public void channelReadComplete(ChannelHandlerContext ctx) throws Exception {

  29.        //冲刷所有待审消息到远程节点,监听到关闭通道后,操作完成

  30.        ctx.writeAndFlush(Unpooled.EMPTY_BUFFER).addListener(ChannelFutureListener.CLOSE);

  31.    }

  32.    /**

  33.     * 读操作时捕获到异常时调用:打印异常及关闭通道

  34.     * @param ctx

  35.     * @param cause

  36.     * @throws Exception

  37.     */

  38.    @Override

  39.    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {

  40.        cause.printStackTrace();

  41.        ctx.close();

  42.    }

  43. }

服务端启动类代码

 
   
   
 
  1. public class EchoServer {

  2.    private final int port;

  3.    public EchoServer(int port) {

  4.        this.port = port;

  5.    }

  6.    public static void main(String[] args) throws InterruptedException {

  7.        new EchoServer(8080).start();

  8.    }

  9.    public void start() throws InterruptedException {

  10.        //使用NioEventLoopGroup接受和处理新连接

  11.        NioEventLoopGroup group = new NioEventLoopGroup();

  12.        try{

  13.            ServerBootstrap server = new ServerBootstrap();

  14.            server.group(group)

  15.                    //指定NIO的传输channel

  16.                    .channel(NioserverSocketChannel.class)

  17.                    .localAddress(port)

  18.                    //添加 EchoServerHandler 到 Channel 的 ChannelPipeline

  19.                    .childHandler(new ChannelInitializer<SocketChannel>() {

  20.                        @Override

  21.                        protected void initChannel(SocketChannel socketChannel) throws Exception {

  22.                            socketChannel.pipeline().addLast(new EchoServerHandler());

  23.                        }

  24.                    });

  25.            //绑定的服务器 同步等待服务器绑定完成

  26.            ChannelFuture future = server.bind().sync();

  27.            System.out.println(EchoServer.class.getName() + " started and listen on " + future.channel().localAddress());

  28.            //等待channel关闭

  29.            future.channel().closeFuture().sync();

  30.        }catch (Exception e){

  31.            e.printStackTrace();

  32.        }finally {

  33.            //关闭NioEventLoopGroup 释放所有资源

  34.            group.shutdownGracefully().sync();

  35.        }

  36.    }

  37. }

客户端代码

客户端处理数据的处理器

 
   
   
 
  1. @ChannelHandler.Sharable

  2. public class EchoClientHandler extends SimpleChannelInboundHandler<ByteBuf> {

  3.    /**

  4.     * 服务器的连接被建立后调用

  5.     * @param ctx

  6.     */

  7.    @Override

  8.    public void channelActive(ChannelHandlerContext ctx) {

  9.        ctx.writeAndFlush(Unpooled.copiedBuffer("hello netty, how are you?", CharsetUtil.UTF_8));

  10.    }

  11.    /**

  12.     * 接收到服务器返回的数据后调用

  13.     * @param channelHandlerContext

  14.     * @param byteBuf

  15.     * @throws Exception

  16.     */

  17.    @Override

  18.    protected void channelRead0(ChannelHandlerContext channelHandlerContext, ByteBuf byteBuf) throws Exception {

  19.        //记录接收到的消息

  20.        System.out.println(System.nanoTime() + " Client received:" + byteBuf.toString(CharsetUtil.UTF_8));

  21.    }

  22.    /**

  23.     * 捕获一个异常时调用

  24.     * @param ctx

  25.     * @param cause

  26.     */

  27.    @Override

  28.    public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {

  29.        cause.printStackTrace();

  30.        ctx.close();

  31.    }

  32. }

客户端启动类代码

 
   
   
 
  1. public class EchoClient {

  2.    private final String host;

  3.    private final int port;

  4.    public EchoClient(String host, int port) {

  5.        this.host = host;

  6.        this.port = port;

  7.    }

  8.    public static void main(String[] args) throws InterruptedException {

  9.        new EchoClient("localhost", 8080).start();

  10.    }

  11.    public void start() throws InterruptedException {

  12.        //指定 EventLoopGroup 来处理客户端事件

  13.        EventLoopGroup group = new NioEventLoopGroup();

  14.        try{

  15.            Bootstrap bootstrap = new Bootstrap();

  16.            bootstrap.group(group)

  17.                    .channel(NioSocketChannel.class)

  18.                    .remoteAddress(new InetSocketAddress(host, port))

  19.                    //当建立一个连接和一个新的通道时,创建添加到 EchoClientHandler 实例 到 channel pipeline

  20.                    .handler(new ChannelInitializer<SocketChannel>() {

  21.                        @Override

  22.                        protected void initChannel(SocketChannel  socketChannel) throws Exception {

  23.                            socketChannel.pipeline().addLast(new EchoClientHandler());

  24.                        }

  25.                    });

  26.            //等待链接完成

  27.            ChannelFuture future = bootstrap.connect().sync();

  28.            //阻塞直到channel关闭

  29.            future.channel().closeFuture().sync();

  30.        }catch (Exception e){

  31.            e.printStackTrace();

  32.        }finally {

  33.            //关闭线程池和释放所有资源

  34.            group.shutdownGracefully().sync();

  35.        }

  36.    }

  37. }

测试代码

先启动服务端EchoServer.main()方法,在启动客户端EchoClient.main()方法 服务端打印日志:

 
   
   
 
  1. 198733200670178 server received: hello netty, how are you?

客户端打印日志:

 
   
   
 
  1. 198733224597828 Client receivedhello netty, how are you?


以上是关于Netty入门实践的主要内容,如果未能解决你的问题,请参考以下文章

Netty入门学习

Netty入门学习

Netty原理实践解析

Netty搭建TCP服务实践

Netty入门——Future和Promise接口

新手入门:目前为止最透彻的的Netty高性能原理和框架架构解析(阿里)