123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- package com.renlianiot.demo;
- import java.net.InetSocketAddress;
- import io.netty.bootstrap.ServerBootstrap;
- import io.netty.channel.ChannelFuture;
- import io.netty.channel.ChannelInitializer;
- import io.netty.channel.nio.NioEventLoopGroup;
- import io.netty.channel.socket.SocketChannel;
- import io.netty.channel.socket.nio.NioServerSocketChannel;
- import io.netty.handler.codec.ByteToMessageCodec;
- import io.netty.handler.codec.ByteToMessageDecoder;
- import io.netty.handler.codec.string.StringDecoder;
- import io.netty.handler.codec.string.StringEncoder;
- public class EchoServer {
- private final int port;
- public EchoServer(int port) {
- this.port = port;
- }
- public static void main(String[] args) throws Exception {
- if (args.length != 1) {
- System.err.println(
- "Usage: " + EchoServer.class.getSimpleName() +
- " <port>");
- return;
- }
- int port = Integer.parseInt(args[0]); //1
- new EchoServer(port).start(); //2
- }
- public void start() throws Exception {
- NioEventLoopGroup group = new NioEventLoopGroup(); //3
- try {
- ServerBootstrap b = new ServerBootstrap();
- b.group(group) //4
- .channel(NioServerSocketChannel.class) //5
- .localAddress(new InetSocketAddress(port)) //6
- .childHandler(new ChannelInitializer<SocketChannel>() { //7
- @Override
- public void initChannel(SocketChannel ch)
- throws Exception {
- ch.pipeline().addLast(
- new EchoServerHandler());
- }
- });
- ChannelFuture f = b.bind().sync(); //8
- System.out.println(EchoServer.class.getName() + " started and listen on " + f.channel().localAddress());
- f.channel().closeFuture().sync(); //9
- } finally {
- group.shutdownGracefully().sync(); //10
- }
- }
- }
|