Big request on Post or Get in Netty Http

2019-08-08 20:20发布

问题:

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

回答1:

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



标签: http post netty