每次想要重启一下netty的server 都需要等个5秒左右,在网上查了一下发现了如下方法:
Configuration configuration = new Configuration();
SocketConfig socketConfig = configuration.getSocketConfig();
socketConfig.setReuseAddress(true);
配置完成后没有再出现端口占用的问题
每次想要重启一下netty的server 都需要等个5秒左右,在网上查了一下发现了如下方法:
Configuration configuration = new Configuration();
SocketConfig socketConfig = configuration.getSocketConfig();
socketConfig.setReuseAddress(true);
配置完成后没有再出现端口占用的问题
本文标题:netty 重启Address already in use
本文链接:https://www.haomeiwen.com/subject/cdhdhctx.html
网友评论