码迷,mamicode.com
首页 > 编程语言 > 详细

spring拦截器排除 静态资源

时间:2016-11-08 11:28:55      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:source   htm   servlet   静态   com   and   拦截器   cache   efault   

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

 

 

<!-- 拦截器 -->
<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拦截器排除 静态资源

标签:source   htm   servlet   静态   com   and   拦截器   cache   efault   

原文地址:http://www.cnblogs.com/xunux/p/6042265.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!