Netty ChannelHandler を使って圧縮・解凍したいのですGzip
が、 しばらくやってみたのですが、いつも少し苦労しました。私のコードは以下の通りです:
pipeline.addLast("decoder", new HttpRequestDecoder());
pipeline.addLast("aggregator", new HttpChunkAggregator(1048576));
pipeline.addLast("inflater", new HttpContentDecompressor());
pipeline.addLast("encoder", new HttpResponseEncoder());
pipeline.addLast("deflater", new HttpContentCompressor());
何か間違っていることでも?