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);
return contexts;
}