HTTP servers compliant to HTTP 1.1 are expected to support pipelining. Note that pipelining is supposed to be also supported by client.
According to httpserver
The API provides a partial
implementation of RFC 2616 (HTTP 1.1)
and RFC 2818 (HTTP over TLS).
it seems to imply that the com.sun.net.httpserver.HttpServer does not fully support HTTP1.1.
HttpURLConnection does not support pipelining and so I am leaning to think that the com.sun.net.httpserver.HttpServer does not support pipelining either.
You say you did some tests. How did you test this?
Update:
From the note it seems that pipelining is supported.
If, as you say you send the requests pipelined, the responses should come back according to the arrival of the requests (irrelevant of time it takes to finish each request i.e. some are faster than others).