-
-
Save binary2010/7689663cb352dd25d514797415b44cc6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.test.server; | |
import static org.jboss.netty.channel.Channels.pipeline; | |
import java.net.InetSocketAddress; | |
import java.util.concurrent.Executors; | |
import org.jboss.netty.bootstrap.ServerBootstrap; | |
import org.jboss.netty.channel.ChannelPipeline; | |
import org.jboss.netty.channel.ChannelPipelineFactory; | |
import org.jboss.netty.channel.socket.nio.NioServerSocketChannelFactory; | |
import org.jboss.netty.handler.codec.http.HttpChunkAggregator; | |
import org.jboss.netty.handler.codec.http.HttpRequestDecoder; | |
import org.jboss.netty.handler.codec.http.HttpResponseEncoder; | |
import org.jboss.netty.handler.stream.ChunkedWriteHandler; | |
public class HttpChunkedServer { | |
private final int port; | |
public HttpChunkedServer(int port) { | |
this.port = port; | |
} | |
public void run() { | |
// Configure the server. | |
ServerBootstrap bootstrap = new ServerBootstrap( | |
new NioServerSocketChannelFactory( | |
Executors.newCachedThreadPool(), | |
Executors.newCachedThreadPool())); | |
// Set up the event pipeline factory. | |
bootstrap.setPipelineFactory(new ChannelPipelineFactory() { | |
public ChannelPipeline getPipeline() throws Exception { | |
ChannelPipeline pipeline = pipeline(); | |
pipeline.addLast("decoder", new HttpRequestDecoder()); | |
pipeline.addLast("aggregator", new HttpChunkAggregator(65536)); | |
pipeline.addLast("encoder", new HttpResponseEncoder()); | |
pipeline.addLast("chunkedWriter", new ChunkedWriteHandler()); | |
pipeline.addLast("handler", new HttpChunkedServerHandler()); | |
return pipeline; | |
} | |
}); | |
bootstrap.setOption("child.reuseAddress", true); | |
bootstrap.setOption("child.tcpNoDelay", true); | |
bootstrap.setOption("child.keepAlive", true); | |
// Bind and start to accept incoming connections. | |
bootstrap.bind(new InetSocketAddress(port)); | |
} | |
public static void main(String[] args) { | |
int port; | |
if (args.length > 0) { | |
port = Integer.parseInt(args[0]); | |
} else { | |
port = 8080; | |
} | |
System.out.format("server start with port %d \n", port); | |
new HttpChunkedServer(port).run(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment