The ThreadedResponseServer example not working: the response "Hello, Word!" is returned to browser only one time, and not every second.. even with these modifications:
HttpResponse resp = new HttpResponse(HttpStatus.OK, "Hello, world!");
resp.addHeader("Connection","keep-alive");
request.getSession().sendResponse(resp, false);