Skip to content

Instantly share code, notes, and snippets.

@jinto
Created January 29, 2013 07:22
Show Gist options
  • Save jinto/4662445 to your computer and use it in GitHub Desktop.
Save jinto/4662445 to your computer and use it in GitHub Desktop.
8줄짜리 그루비 웹서버
import com.sun.net.httpserver.*;
HttpServer server = HttpServer.create(new InetSocketAddress(2222),0)
server.createContext('/', { HttpExchange exchange ->
exchange.sendResponseHeaders(200,0);
exchange.responseBody.write("hello from groovy land.".bytes)
exchange.responseBody.close();
i++;
} as HttpHandler)
server.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment