//otherwise we redirect to index.html
new PredicateHandler(
Predicates.path("/index.html"),
new ResourceHandler()
.setResourceManager(new ClassPathResourceManager(WebSocketServer.class.getClassLoader(), WebSocketServer.class.getPackage())),
new RedirectHandler("http://localhost:8080/index.html")))
.build();
server.start();
}