public WebServer(URL spec, URL templates, URL pub, Map<String, String> mimetypes) {
this(spec, templates, pub, mimetypes, true);
}
public WebServer(String specLocation, String templatesLocation, String publicLocation, Map<String, String> mimetypes, boolean lock) throws IOException {
this(new Server(specLocation, templatesLocation, publicLocation, mimetypes, lock));
}