Skip to content

Instantly share code, notes, and snippets.

@msdalp
Last active August 29, 2015 13:56
Show Gist options
  • Save msdalp/9299142 to your computer and use it in GitHub Desktop.
Save msdalp/9299142 to your computer and use it in GitHub Desktop.
package com.msd.jetty;
public class App {
public static void main(String[] args) {
final Jetty jetty = new Jetty(8080);
jetty.start();
Thread.sleep(500);
if (false == jetty.isStarted()) {
throw new Exception("Cannot start jetty server");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment