美文网首页
Netty的基本使用

Netty的基本使用

作者: 忆_析风 | 来源:发表于2018-08-07 18:06 被阅读0次

Netty的基本使用

目录

[TOC]

引用

    implementation 'io.netty:netty-all:4.1.6.Final'

Netty 4最后一个release版本是4.1.28,但是亲测这个版本启动就会报异常...........所以降级回4.1.6

使用

TCP

服务端

    EventLoopGroup boss = new NioEventLoopGroup();
    EventLoopGroup worker = new NioEventLoopGroup();
            try {
        ServerBootstrap bootstrap = new ServerBootstrap();
        bootstrap.group(boss, worker);
        bootstrap.channel(NioServerSocketChannel.class);
        bootstrap.option(ChannelOption.TCP_NODELAY, true);
        bootstrap.childOption(ChannelOption.SO_KEEPALIVE, true);
        bootstrap.childHandler(new ChannelInitializer<SocketChannel>() {
            @Override
            protected void initChannel(SocketChannel socketChannel) throws Exception {
                ChannelPipeline p = socketChannel.pipeline();
                p.addLast("framedecoder", new LengthFieldBasedFrameDecoder(1024 * 1024 * 10, 0, 4, 0, 4));
                p.addLast(new NettyServerHandler());
            }
        });
        mChannelFuture = bootstrap.bind(mPort).sync();
        if (mChannelFuture.isSuccess()) {
            System.out.printf("start tcp server succeed,mPort : " + mPort);
        }
        mChannelFuture.channel().closeFuture().sync();
    } catch (Exception e) {
        System.out.printf("a exception happened while tcp server running");
        e.printStackTrace();
    } finally {
        boss.shutdownGracefully();
        worker.shutdownGracefully();
        mIsRunning = false;
    }

其中

mChannelFuture.channel().closeFuture().sync();

会阻塞线程,所以这段代码应该放在一个线程中.

Channel是连接服务端和客户端的通道.

ChannelPipeline p = socketChannel.pipeline();

ChannelPipeline是一个处理器容器,当有新数据接收时会调用容器中的处理器.

NettyServerHandler是处理最终接收到数据的地方

    private class NettyServerHandler extends ChannelInboundHandlerAdapter {

        @Override
        public void channelActive(ChannelHandlerContext ctx) throws Exception {
            initTransport(ctx.channel());
        }

        @Override
        public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {
            WrapPacket packet = SocketUtils.decodeWrapPacketFromByteBufAfterSplit((ByteBuf) msg);
            String channelId = ctx.channel().id().asLongText();
            SubTransport transport = mChannelTransportMap.get(channelId);
            if (transport == null) {
                throw new RuntimeException("can not get transport form map , create a transport and put to map");
            }
            transport.onNewPacketReceived(packet);
        }

    }

LengthFieldBasedFrameDecoder是基于包长度的包解析器,用来拆包和处理半包.还有其他的自带解析器,比如分割,固定包长度等,不过个人偏向于喜欢这个,这个可以将资源利用最大化,而且没有字符不能使用的限制,如果是分割符的解析器,则会占用掉一些字符组合不能使用.当然这个也会翻车,当别人恶意攻击时,或者协议设计有问题时,一个错了,那就接下来所有都错了.错一步,满盘皆输,也是渗人.当然也可以自定义包解析器喽.

客户端

    EventLoopGroup eventLoopGroup = new NioEventLoopGroup();
            try {
        Bootstrap bootstrap = new Bootstrap();
        bootstrap.channel(NioSocketChannel.class);
        bootstrap.option(ChannelOption.SO_KEEPALIVE, true);
        bootstrap.group(eventLoopGroup);
        bootstrap.remoteAddress(mAddress, mPort);
        bootstrap.handler(new ChannelInitializer<SocketChannel>() {
            @Override
            protected void initChannel(SocketChannel socketChannel) throws Exception {
                socketChannel.pipeline().addLast("framedecoder", new LengthFieldBasedFrameDecoder(1024 * 1024 * 10, 0, 4, 0, 0));
                socketChannel.pipeline().addLast(new NettyClientHandler());
            }
        });
        mChannelFuture = bootstrap.connect(mAddress, mPort).sync();
        if (mChannelFuture.isSuccess()) {
            Log.d("connect to mAddress : " + mAddress + ", mPort : " + mPort + " succeed");
        }
        mChannelFuture.channel().closeFuture().sync();
    } catch (InterruptedException e) {
        e.printStackTrace();
        Log.d("can not connect to mAddress : " + mAddress + " ,mPort : " + mPort);
    } finally {
        eventLoopGroup.shutdownGracefully();
    }

同样也是阻塞的,和服务端差不多,便不再说明.

未完待续 ......

相关文章

  • Netty的基本使用

    本系列文章记录项目的一些实战经验,从基本使用到底层原理、源码分析等。 本系列文章Netty相关示例 1、简单的HT...

  • Netty的基本使用

    Netty的基本使用 目录 [TOC] 引用 Netty 4最后一个release版本是4.1.28,但是亲测这个...

  • Netty的基本使用

    参考自大神文章,大神原文贴上https://www.jianshu.com/p/c5068caab217 介绍 n...

  • netty极简教程(六):Netty是如何屏蔽ServerSoc

    现在我们已经基本了解了netty底层使用的组件,就明白了netty为什么是事件驱动模型:(netty极简教程(四)...

  • Netty是什么

    本文基于Netty4.1展开介绍相关理论模型,使用场景,基本组件、整体架构 Netty简介 Netty是 一个异步...

  • Netty源码解析 —— 序

    阅读此文章前请先了解java nio以及netty的基本使用。可以阅读《Java NIO》以及《Netty实战》这...

  • Netty学习--传输

    传输迁移 未使用Netty 的阻塞网络编程 未使用Netty 的异步网络编程 使用Netty 的阻塞网络处理 使用...

  • Netty之HelloWorld

    现在Java网络编程框架这块基本已经被Netty垄断了,几乎所有框架底层的RPC通信都是使用Netty来实现,Ne...

  • netty基本使用- socket通信

    netty 支持socket通信 1,netty 大大简化了socket开发,提高了socket的性能。 2,Ne...

  • Java读源码之Netty深入剖析[百度网盘分享]

    第1章 课程介绍 介绍本课程需要的前提知识和内容概要 1-1 Netty深入剖析 第2章 Netty基本组件 使用...

网友评论

      本文标题:Netty的基本使用

      本文链接:https://www.haomeiwen.com/subject/nrwavftx.html