‘liusuyi’
2023-08-10 a0a1b5499e458c7b0a2a091608718df9aef448c7
src/main/java/com/ard/utils/udp/NettyUdpServer.java
@@ -35,13 +35,13 @@
            serverBootstrap = serverBootstrap.handler(new NettyUdpHandler());
            //6、绑定server,通过调用sync()方法异步阻塞,直到绑定成功
            ChannelFuture channelFuture = serverBootstrap.bind(port).sync();
            log.info("started and listened on " + channelFuture.channel().localAddress());
            log.debug("started and listened on " + channelFuture.channel().localAddress());
            //7、监听通道关闭事件,应用程序会一直等待,直到channel关闭
            channelFuture.channel().closeFuture().sync();
        } catch (Exception e) {
            log.error("error:" + e.getMessage());
        } finally {
            log.info("netty udp close!");
            log.debug("netty udp close!");
            //8 关闭EventLoopGroup,
            bossLoopGroup.shutdownGracefully();
        }