Advertisement
Alir3z4

Hello World in SparkJava Web Framework.

Dec 27th, 2018
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. import static spark.Spark.*;
  2.  
  3. public class HelloWorld {
  4.     public static void main(String[] args) {
  5.         get("/hello", (req, res) -> "Hello World");
  6.     }
  7. }
  8.  
  9. // Fire it up: http://localhost:4567/hello
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement