Unhandled exception java.lang.IllegalStateException: Response has already been written
//Are you sending files? If yes...
HttpServerResponse response = routingContext.response();
response.setChunked(true);
response.sendFile("frontEnd/index.html");
//[...]
response.end(); // <----- Remove this