//群发,服务端向每个连接上来的客户端群发消息
NettyConfig.group.writeAndFlush(tws);
这里怎么实现一对一发送消息
ctx.channel().writeAndFlush(tws);
you can try this.