I wanted to exclude my resources from not going to the page's controllers. Spring is mentioning to use; (Spring version I'm running on is: 3.2.0.RELASE)
<beans xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:schemaLocation="http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<!-- Add BeanNameUrlHandlerMapping
http://stackoverflow.com/questions/4784060/spring-tomcat-and-static-resources-and-mvcresources -->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping" />
<mvc:resources mapping="/assets/**" location="/assets/" />
But now all information is being blocked, no information is passed further to my beans(/controllers)
Any suggestions?