final ChannelPipeline pipeline = channel.pipeline();
pipeline.addLast("decoder", new HttpRequestDecoder());
pipeline.addLast("chunkAggregator", new HttpObjectAggregator(130 * 1024));
pipeline.addLast("encoder", new HttpResponseEncoder());
pipeline.addLast("corsInbound", new CorsInboundHandler());
pipeline.addLast("sockjs", new SockJsHandler(services));
pipeline.addLast("corsOutbound", new CorsOutboundHandler());
}