someone can help me to understand the netty behavior when starting the same bootstrap server twice. I can't catch any exception. See my code :
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());
I' using netty4.0.0.Beta2.