In spring mvc I have a controller that listens to all requests comming to /my/app/path/controller/*.
Let's say a request comes to /my/app/path/controller/blah/blah/blah/1/2/3
How do I get the /blah/blah/blah/1/2/3 part, i.e. the part that matches the * in the handler mapping definition.
In other words I am looking for something similar that pathInfo does for servlets but for controllers.