Forwarding requests to different verticle based on path param (Vert.x)
I’m using Vert.x for the first time ever to try to build an API in Java. Right now I can use an eventBus
in my main verticle to forward certain routes like /example/:name
etc to a handler that sends an eventBus message to it’s respective verticle.