随笔分类 -  Netty

摘要:<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> </head> <body> <div>发送消息:</div> <input type="text" id="msgContent"/> <input typ 阅读全文
posted @ 2020-09-22 18:14 Edward_han 阅读(301) 评论(0) 推荐(0)
摘要:public class WSServer { public static void main(String[] args) throws Exception{ EventLoopGroup mainGroup = new NioEventLoopGroup(); EventLoopGroup su 阅读全文
posted @ 2020-09-22 18:13 Edward_han 阅读(264) 评论(0) 推荐(0)
摘要:构建hello服务器 public class HelloServer{ public static void main(String[] args) throws Exception { // 定义一对线程组 // 主线程组,用于接收客户端连接,但是不做任何处理,像老板一样,不做事 EventLo 阅读全文
posted @ 2020-09-22 18:11 Edward_han 阅读(136) 评论(0) 推荐(0)