I have the following mapping:
@RequestMapping(value = \"/{first}/**/{last}\", method = RequestMethod.GET)
public String test(@PathVariable(\"first\") String firs
try to use this
@RequestMapping(value = {"some mapped address","some mapped address with path variable","some mapped address with another path variable"})
array list of available url for specific method
But be careful on creating list of url when you are using @PathVariable in your method signature it cant be null.
hope this help