Skip to content

Instantly share code, notes, and snippets.

@Alir3z4
Created October 29, 2016 14:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Alir3z4/55efc2090be7f6cc5e9962c6a73fddf2 to your computer and use it in GitHub Desktop.
Save Alir3z4/55efc2090be7f6cc5e9962c6a73fddf2 to your computer and use it in GitHub Desktop.
Spark Java Quick Start
import static spark.Spark.*;
public class HelloWorld {
public static void main(String[] args) {
get("/hello", (req, res) -> "Hello World");
}
}
// Fire it up: http://localhost:4567/hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment