github.com/SupersunnySea/draft@v0.16.0/examples/example-java/src/main/java/helloworld/Hello.java (about) 1 package helloworld; 2 3 import static spark.Spark.*; 4 5 public class Hello { 6 public static void main(String[] args) { 7 get("/", (req, res) -> "Hello World, I'm Java!"); 8 } 9 }