有人可以帮助我了解两次启动同一个引导服务器时的网络行为。我无法捕捉到任何异常。查看我的代码:
bootstrap = new ServerBootstrap();
bootstrap.group(nioEventLoopGroup);
bootstrap.channel(NioServerSocketChannel.class);
bootstrap.option(ChannelOption.TCP_NODELAY, Boolean.valueOf(true));
bootstrap.option(ChannelOption.SO_KEEPALIVE, Boolean.valueOf(true));
bootstrap.option(ChannelOption.SO_REUSEADDR, Boolean.valueOf(true));
bootstrap.childHandler(new ServerSocketBasedInitializer(messageFacade));
allChannels.add(bootstrap.bind(new InetSocketAddress(80)).channel());
我使用 netty4.0.0.Beta2。