For example, with the URL
foo.com/bar/99
99 will be available directly to a method in the controller as an argument. The controller is mapped to /bar
For anyone familiar with ASP.NET MVC or Django, this would be similar to routes.MapRoute in the former and using (?P\d+) in urlpatterns in the latter.
It would be possible to process the data in the Http Request object directly to get this, but I'd like to know if Spring MVC has built-in support for this (particularly version 2.5).