I am developing an application with Spring MVC, What is the best way to serve the Static pages (fow which I don't need a Model and Controller). Since All the request go to dispatcher servlet first.
I understand that following tag will help to get my resources js,css and images from the resource directory.
<mvc:resources mapping="resources/**" location="resources/" />
But what if I have pages for eg (registration.jsp) that does not need a controller. Do I need to map every page using mvc:resources tag. If yes, will it be able to handle my tiles configuration?