spring拦截器排除 静态资源

Posted Loi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring拦截器排除 静态资源相关的知识,希望对你有一定的参考价值。

拦截器需要排除静态资源,不然会造成资源浪费

 

 

<!-- 拦截器 -->
<mvc:interceptors>  
    <!-- 使用bean定义一个Interceptor,直接定义在mvc:interceptors根下面的Interceptor将拦截所有的请求 -->  
    <mvc:interceptor>
        <mvc:mapping path="/**"/>    
        <mvc:exclude-mapping path="/resources/**"/>       
        <bean class="com.idreamsky.rainbow.report.interceptor.UrlInterceptor"/>  
    </mvc:interceptor>
</mvc:interceptors>

<!-- 静态资源的处理 -->
<!--<mvc:default-servlet-handler /> -->
<mvc:resources location="/WEB-INF/resources/**" mapping="/resources/**" cache-period="#{3600 * 24}" />

 

 

 

 

 

参考资料:

1、http://www.cnblogs.com/wxisme/p/4925331.html

以上是关于spring拦截器排除 静态资源的主要内容,如果未能解决你的问题,请参考以下文章

Spring MVC关于静态资源的过滤(详解)(或者叫做拦截器)

Spring MVC关于静态资源的过滤(详解)(或者叫做拦截器)

Spring MVC关于静态资源的过滤(详解)(或者叫做拦截器)

spring mvc的静态资源拦截器怎么配置

Spring Boot干货系列:静态资源和拦截器处理

关于Spring boot2.0+配置拦截器拦截静态资源的问题