溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

防止SpringMVC攔截器攔截js等靜態(tài)資源文件的解決方法

發(fā)布時間:2020-09-10 11:58:39 來源:腳本之家 閱讀:160 作者:LeoWang, 欄目:編程語言

SpringMVC提供<mvc:resources>來設(shè)置靜態(tài)資源,但是增加該設(shè)置如果采用通配符的方式增加攔截器的話仍然會被攔截器攔截,可采用如下方案進行解決:

方案一、攔截器中增加針對靜態(tài)資源不進行過濾(涉及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/*" cache-period="360000"/>

<mvc:interceptors>
  <mvc:interceptor>
    <mvc:mapping path="/**/*"/>
    <mvc:exclude-mapping path="/**/fonts/*"/>
    <mvc:exclude-mapping path="/**/*.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>

方案二、使用默認的靜態(tài)資源處理Servlet處理靜態(tài)資源(涉及spring-mvc.xml, web.xml)

在spring-mvc.xml中啟用默認Servlet

 <mvc:default-servlet-handler/>

在web.xml中增加對靜態(tài)資源的處理

<servlet-mapping>  
  <servlet-name>default</servlet-name>  
  <url-pattern>*.js</url-pattern>  
  <url-pattern>*.css</url-pattern>  
  <url-pattern>/assets/*"</url-pattern>  
  <url-pattern>/images/*</url-pattern>  
</servlet-mapping>

但是當前的設(shè)置必須在Spring的Dispatcher的前面

方案三、修改Spring的全局攔截設(shè)置為*.do的攔截(涉及web.xml)

<servlet>
  <servlet-name>SpringMVC</servlet-name>
  <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  <init-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring-mvc.xml</param-value>
  </init-param>
  <load-on-startup>1</load-on-startup>
  <async-supported>true</async-supported>
</servlet>
<servlet-mapping>
  <servlet-name>SpringMVC</servlet-name>
  <url-pattern>*.action</url-pattern>
</servlet-mapping>

這樣設(shè)置,Spring就會只針對以'.do'結(jié)尾的請求進行處理,不再維護靜態(tài)資源

針對這三種方案的優(yōu)劣分析:

  第一種方案配置比較臃腫,多個攔截器時增加文件行數(shù),不推薦使用;

  第二種方案使用默認的Servlet進行資源文件的訪問,Spring攔截所有請求,然后再將資源文件交由默認的Sevlet進行處理,性能上少有損耗;

  第三種方案Spring只是處理以'.action'結(jié)尾的訪問,性能上更加高效,但是再訪問路徑上必須都以'.action'結(jié)尾,URL不太文雅;

綜上所述,推薦使用第二和第三中方案

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI