使用Netty编写一个简单的群聊系统
概述具体业务跟下面文章的一样,只是下面文章用的是NIO,这里使用Netty改造。https://blog.csdn.net/qq_40837310/article/details/111248486目的是为了熟悉Netty基本API使用。服务端编码:public class ServerGroupChatServer { private int port; public ServerGroupChatServer(int port){ this.por...