I\'m trying to use resources mapping feature of Spring 3 and it does not seem to be working. Here is what I have:
aaa<
You are mapping your app to the root context, so you should probably include
in your mvc config. Have a look at 15.12.5 in the spring docs. I wasn't able to get mvc:resources to work without that setting when my dispatcher servlet was mapped to /. At least, that's what I seem to remember having to do when I configured this a couple of months ago in my project.