Is there any way to map all css resources so that they are all served from /css folder from SpringMVC?
Ex. /login/sampleUser/ie.css maps to /css/ie.css
I have been trying using <mvc:resources mapping="/css/**" location="/css/" >, but seems not to work.
Thanks