You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
184 B

3 years ago
  1. package de.fd.fh;
  2. import static spark.Spark.*;
  3. public class ServerApp
  4. {
  5. public static void main(String[] args)
  6. {
  7. get("/hello", (req, res) -> "Hello World");
  8. }
  9. }