赞
踩
SpringMVC提供<mvc:resources>来设置静态资源,但是增加该设置如果采用通配符的方式增加拦截器的话仍然会被拦截器拦截,可采用如下方案进行解决:
方案一、拦截器中增加针对静态资源不进行过滤(涉及spring-mvc.xml)
1 <mvc:resources location="/" mapping="/**/*.js"/> 2 <mvc:resources location="/" mapping="/**/*.css"/> 3 <mvc:resources location="/assets/" mapping="/assets/**/*"/> 4 <mvc:resources location="/images/" mapping="/images/*" cache-period="360000"/> 5 6 <mvc:interceptors> 7 <mvc:interceptor> 8 <mvc:mapping path="/**/*"/> 9 <
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。