博客
关于我
Netty4服务端入门代码示例
阅读量:331 次
发布时间:2019-03-04

本文共 2453 字,大约阅读时间需要 8 分钟。

添加Maven依赖

        <dependency>            <groupId>io.netty</groupId>            <artifactId>netty-all</artifactId>            <version>4.1.36.Final</version>        </dependency>

代码示例:

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;import io.netty.handler.codec.string.StringDecoder;import io.netty.handler.codec.string.StringEncoder;public class NetttyServer{    public static void main(String[] args)    {        EventLoopGroup boss = new NioEventLoopGroup();        EventLoopGroup worker = new NioEventLoopGroup();        ServerBootstrap bootstrap = new ServerBootstrap();        bootstrap.group(boss,worker)                .channel(NioServerSocketChannel.class)                .childHandler(new ChannelInitializer<SocketChannel>()                {                    @Override                    protected void initChannel(SocketChannel socketChannel) throws Exception                    {                        socketChannel.pipeline()                                .addLast("encoder",new StringEncoder())                                .addLast("decoder",new StringDecoder())                                .addLast("hello world hanlder",new HelloWorldHandler());                    }                });        try        {            ChannelFuture channelFuture = bootstrap.bind(8080).sync();            channelFuture.channel().closeFuture().sync();        } catch (InterruptedException e){            e.printStackTrace();        }finally        {            boss.shutdownGracefully();            worker.shutdownGracefully();        }    }    static class HelloWorldHandler extends ChannelInboundHandlerAdapter    {        @Override        public void channelActive(ChannelHandlerContext ctx) throws Exception        {            System.out.println("channel Active and write back......");            String resp = "Hello world";            ChannelFuture future = ctx.channel().writeAndFlush(resp);            future.sync();            System.out.println("success:"+future.isSuccess());            //super.channelActive(ctx);        }        public void channelRead(ChannelHandlerContext ctx, Object msg) throws Exception {            System.out.println("read msg : "+msg);            String resp = "Hello world";            ctx.channel().writeAndFlush(resp);        }    }}

转载地址:http://qume.baihongyu.com/

你可能感兴趣的文章
【springmvc】传值的几种方式&&postman接口测试
查看>>
泳道图简介
查看>>
Tomcat6中web项目部署路径webapps和wtpwebapps的区别
查看>>
Java判断字符串是否为金额
查看>>
CodeCombat代码全记录(Python学习利器)--安息之云山峰(第四章)代码9
查看>>
nginx配置文件nginx.conf详细讲解(2)
查看>>
nginx配置文件nginx.conf详细讲解(4)--终结篇
查看>>
某公司运维岗位笔试题8
查看>>
一个简单的shell脚本:weblogic日志按天生成(日志压缩)
查看>>
skyfans之每天一个Liunx命令系列之二:uptime
查看>>
js中的文档碎片的理解与使用
查看>>
Kubernetes十三--Pod定义文件内容详解
查看>>
3、69道Spring面试题及答案
查看>>
普歌- LRF-(简单易懂)笔记本电脑USB接口案例 接口多态(向下转型)
查看>>
Java中如何构建树结构
查看>>
若依启动流程
查看>>
解决vue部署到nginx后刷新404
查看>>
解决eclipse字体背景变红或者变绿的问题
查看>>
一个面试大牛的经历
查看>>
浮点数在内存中的存储
查看>>