Big request on Post or Get in Netty Http

2019-08-08 19:55发布

I am using Netty for socket connection mainly. But i also want to use netty to handle some http connections as well. The problem is : the data in the post method sent to Netty Http Server is so large . So Netty raise the exception: Long Frame Exception. Anyone please tell me how to configure Netty accept bigger Post param value. Thank you very much

标签: http post netty
1条回答
看我几分像从前
2楼-- · 2019-08-08 20:45

I suspect you have HttpChunkAggregator in the pipeline. Please remove it and handle HttpChunk by yourself.

查看更多
登录 后发表回答