带Netty 4的多端口服务器?

我想在一个Netty应用程序中绑定两个服务器套接字(例如,端口8000,8001)。

我试图合并DiscardServer和EchoServer的例子来测试。

但在第一个服务器初始化代码中,

ChannelFuture f = bootstrap1.bind(port).sync();
f.channel().closeFuture().sync(); // <-- program blocks here

程序执行会阻止第二个服务器初始化代码无法到达。

如何使用Netty 4.0启动两个不同的端口服务器?


只是评论这个条款

f.channel().closeFuture().sync(); // <-- program blocks here

我找到了一个关于监听多端口服务的答案

请阅读:多个协议的多个端口上的Netty 4.0?

链接地址: http://www.djcxy.com/p/64773.html

上一篇: Multiple port server with Netty 4?

下一篇: Netty 4.0 on multiple ports with multiple protocols?