springMVC提供<mvc:resources>来设置静态资源,但是增加该设置如果采用通配符的方式增加拦截器的话仍然会被拦截器拦截,可采用如下方案进行解决:方案一、拦截器中增加针对静态资源不进行过滤(涉及spring-mvc
springMVC提供<mvc:resources>来设置静态资源,但是增加该设置如果采用通配符的方式增加拦截器的话仍然会被拦截器拦截,可采用如下方案进行解决:
方案一、拦截器中增加针对静态资源不进行过滤(涉及spring-mvc.xml)
<mvc:resources location="/" mapping="*.js"/> <mvc:resources location="/" mapping="*.CSS"/> <mvc:resources location="/assets/" mapping="/assets*"/> <mvc:resources location="/images/" mapping="/images*"/> <mvc:exclude-mapping path="fonts*.css"/> <mvc:exclude-mapping path="*.js"/> <mvc:exclude-mapping path="*.png"/> <mvc:exclude-mapping path="*.gif"/> <mvc:exclude-mapping path="*.jpg"/> <mvc:exclude-mapping path="*.jpeg"/> <mvc:exclude-mapping path="*login*"/> <mvc:exclude-mapping path="*Login*"/> <bean class="com.luwei.console.mg.interceptor.VisitInterceptor"></bean> </mvc:interceptor></mvc:interceptors>
--结束END--
本文标题: 防止SpringMVC拦截器拦截js等静态资源文件的解决方法
本文链接: https://lsjlt.com/news/223168.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0