Thursday, April 4, 2019

Did you know? JDK comes with HttpServer since 1.6

Did you know? JDK comes with a HttpServer since 1.6

import java.io.OutputStream;
import java.net.InetSocketAddress;
import com.sun.net.httpserver.HttpServer;
public class WebApp {
public static void main(String[] args) throws Exception {
HttpServer server = HttpServer.create(new InetSocketAddress(9394), 0);
server.createContext("/ping").setHandler(h -> {
final String response = "pong!";
h.sendResponseHeaders(200, response.getBytes().length);
try (OutputStream os = h.getResponseBody()) {
os.write(response.getBytes());
}
});
server.createContext("/shutdown").setHandler(h -> server.stop(0));
server.start();
}
}
view raw WebApp.java hosted with ❤ by GitHub

And it is not a secret, do not use API under sun.*. It is under com.sun.*. Just tried it out and still works on JDK 11.

No comments:

Post a Comment