ContextHandler rootContextHandler = contexts.addContext("/", "");
rootContextHandler.setHandler(this.createResourceHandler(false, this.configuration.getBasedir().getCanonicalPath(), new String[]{this.getWelcomeFilePath()}));
rootContextHandler.setAliases(true);
ContextHandler classPathContextHandler = contexts.addContext("/classpath", "");
classPathContextHandler.setHandler(new ClassPathResourceHandler(configuration.getProjectClassLoader()));
classPathContextHandler.setAliases(true);
ContextHandler webJarsContextHandler = contexts.addContext("/webjars", "");
webJarsContextHandler.setHandler(new WebJarResourceHandler(configuration.getProjectClassLoader()));
webJarsContextHandler.setAliases(true);