Limit on the length of the data that a webserver can return in response to a GET request
Original Answer: There are no limits on the amount of data returned on a HTTP response from Jetty. You could stream data back to the client until shortly before the heat death of the universe. Technically speaking, you can have a HTTP Response with no Content-Length specified, which can be returned using either the Chunked … Read more