我想排除我的资源,不要去页面的控制器。 春天提到使用; (Spring版本I' m 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/" />
但现在所有信息都被阻止,没有信息进一步传递给我的bean(/ controllers)
有什么建议吗?
答案 0 :(得分:0)
我认为你会在spring配置文件中缺少下面的行。
<mvc:annotation-driven/>
<mvc:default-servlet-handler/>