I have set a route to serve uploaded image files `...
# vertx
e
I have set a route to serve uploaded image files
router.get("/file-uploads/*").handler(StaticHandler.create())
. Vert.X is failing to serve the files with this error message Resource not found, even though a correct image URL was provided.
n
You need to use router.route function instead of router.get.