netty解析Post的键值对 解析时必须加上一个方法,ch.pipeline().addLast(new HttpObjectAggregator(2048)); 放在自己的Handel前面. http服务器把HttpObjectAggregator放入管道里.HttpObjectAggregator会把多个消息转换为一个单一的FullHttpRequest或是FullHttpResponse. To solve the problem you either need to offer() a…