I have spring MVC app (version 3.1.M2) app working fine so far. However when I tried to access a page with a variable in the url, the style doesn't work on that page.
For example: when I access http://localhost:8181/myApp/edit/4 page, the style doesn't work
In addition, After I submit the page and redirect to another one using return new ModelAndView("destinationpage") in my Controller, the style doesn't work at the destination page as well. But I think that one is due to the url for that page ( cause the url stay at http://localhost:8181/myApp/edit/4 instead of becoming http://localhost:8181/myApp/destinationpage).

Thanks in advance