LittleProxy is a high performance HTTP proxy written in Java atop Trustin Lee's excellent Netty event-based networking library. It's quite stable, performs well, and is easy to integrate into your projects.
One option is to clone LittleProxy and run it from the command line. This is as simple as:
$ git clone git://github.com/adamfisk/LittleProxy.git
$ cd LittleProxy
$ ./run.bash
You can embed LittleProxy in your own projects through maven with the following:
<dependency>
<groupId>org.littleshoot</groupId>
<artifactId>littleproxy</artifactId>
<version>0.5.3</version>
</dependency>
Once you've included LittleProxy, you can start the server with the following:
HttpProxyServer server =
DefaultHttpProxyServer.bootstrap()
.withPort(8080)
.start();
There are lots of filters and such you can also add to LittleProxy. You can add request and reponse filters, for example, as in:
HttpProxyServer server =
DefaultHttpProxyServer.bootstrap()
.withPort(8080)
.withRequestFilter(new DefaultHttpProxyServer(PROXY_PORT, new HttpRequestFilter() {
@Override
public void filter(HttpRequest httpRequest) {
System.out.println("Request went through proxy");
}
})
.withResponseFilters(new HttpResponseFilters() {
@Override
public HttpFilter getFilter(String hostAndPort) {
return null;
}
})
.start();
If you want to create additional proxy servers with similar configuration but listening on different ports, you can clone an existing server. The cloned servers will share event loops to reduce resource usage and when one clone is stopped, all are stopped.
existingServer.clone().withPort(8081).start()
If you have questions, please visit our Google Group here:
https://groups.google.com/forum/#!forum/littleproxy
Project reports, including the [API Documentation] (http://adamfisk.github.io/LittleProxy/apidocs/index.html), can be found here:
http://adamfisk.github.io/LittleProxy/
Benchmarking instructions and results can be found here.
Many thanks to The Measurement Factory for the use of Co-Advisor for HTTP standards compliance testing.