1011121314151617181920
*/ public class MainTestServer { public static void main(String args[]) throws InterruptedException { final HttpServer httpServer = new HttpServer(); httpServer.setRestHandler(new MyRestHandler()); httpServer.start(); Thread.sleep(Long.MAX_VALUE); }