What I want to achieve:
Http request for:
*.css, *.js, *.html, *.xhtml, *.jsp, *.png, *.jpg, *.gif
---> should call the resource or view files (html, jsp) directly and not be processed by DispatcherServlet and any Controller.
Every other http request should be processed by DispatcherServlet and some mapped Controller.
I want to build a CMS system that generates static html and jsp files dynamically, so there will be no controllers for these files. But the files should be accessible by name.
Any ideas ?