Is it possible to use @RequestMapping
in form of (or different) :
@RequestMapping(value = {"/dirA/{listOfids}" }, method = RequestMethod.GET)
so that path /dirA/2/3/4/5/6(...)
will be still resolved into it?
Or what would be the best way to handle similar request and pass array of some ids/properties?