I am new to HTTP world, and I been reading an article about the development of the HTTP protocol until the most recent update at the end of 2015 for HTTP/2.
Until now when you wanted to create a simple HTTP server in java you could use:
HttpServer.create(new InetSocketAddress(8000), 0)
Like it's described in this answer from 2010.
I want to know how can one build an HTTP/2 server today using only Java SE API?