How to accept list of parameter in same key in router GET method.
e.g I have a query parameter name as 'personId'. but in get request there can be multiple(list of) personId are coming. How to handle this in vertx. I couldnt find any such method in HttpServerRequest
Class.
I have another option to accept single parameter but with comma separated ids. But isn't it wrong? Isn't there any other way?
I think the URI should like localhost:8081/myApi?personId=1&personId=2&personId=3
FInally found it.
Here you can get list of personId. URI be like
localhost:8081/myApi?personId=1&personId=2&personId=3