我有一个问题,关于如何在创建TCP服务器套接字时将主线程恢复到Netty中。
在下面的代码here中,“Hello Hello”永远不会在输出中写入启动Server的线程,等待这一行:f.channel().closeFuture().sync();
。在这种情况下,我是否需要创建一个单独的线程来获取主线程,或者在Netty中是否允许我这样做(在后台运行TCP时获取主线程)?
public void start() throws Exception {
NioEventLoopGroup group = new NioEventLoopGroup();
try {
ServerBootstrap b = new ServerBootstrap();
b.group(group)
.channel(NioServerSocketChannel.class)
.localAddress(new InetSocketAddress(port))
.childHandler(new ChannelInitializer<SocketChannel>() {
@Override
public void initChannel(SocketChannel ch)
throws Exception {
ch.pipeline().addLast(
new EchoServerHandler());
}
});
ChannelFuture f = b.bind().sync();
System.out.println(EchoServer.class.getName() + " started and listen on " + f.channel().localAddress());
f.channel().closeFuture().sync();
} finally {
group.shutdownGracefully().sync();
}
}
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]);
new EchoServer(port).start();
System.out.println("Hello Hello");
}
答案 0 :(得分:2)
您无需等待closefuture。这只在教程中完成,以使事件循环组正确关闭。
您可以从程序中删除f.channel().closeFuture().sync();
和group.shutdownGracefully().sync();
行,使其无阻塞。
确保在关闭主程序时调用f.channel().close()
,然后调用f.channel().closeFuture().sync()
,最后调用group.shutdownGracefully().sync();
以确保Netty堆栈已正确停止