24-Mar-2018 14:11:20.564 INFO [http-nio-8080-exec-3] org.apache.coyote.http11.Http11Processor.service Error parsing HTTP request header Note: further occurrences of HTTP header parsing errors will be logged at DEBUG level. java.lang.IllegalArgumentEx…
netty解析Post的键值对 解析时必须加上一个方法,ch.pipeline().addLast(new HttpObjectAggregator(2048)); 放在自己的Handel前面. http服务器把HttpObjectAggregator放入管道里.HttpObjectAggregator会把多个消息转换为一个单一的FullHttpRequest或是FullHttpResponse. To solve the problem you either need to offer() a…