root.addExactPath("/", servlet-root-handler);Something like this:PathHandler root = new PathHandler();
root.addExactPath("/static-stuff", new ResourceHandler(...));
this way you map your servlet app to / and then override what ever you want below it with resource handler.