I am using spring mvc. I have 3 pages in my site (actually the controller handle those requests):
localhost/post.html
localhost/search.html
localhost/list.html
I would like the url to be localhost/XXX/post.html where XXX is a parameter that will transffered as a parameter to the controller method. For example, if the user asks localhost/bla/post.html then the controller method of /post will get bla as parameter.
Is this possible in spring mvc?