7
votes

Can anyone provide an example of a simple HTTP server implemented using Netty, that supports persistent HTTP connections.

In other words, it won't close the connection until the client closes it, and can receive additional HTTP requests over the same connection?

1

1 Answers

8
votes

This is exactly one of the things their sample http code demonstrates.