在JSP中常見問題,防止SpringMVC攔截器攔截js等靜態資源檔案的解決方案

來源:互聯網
上載者:User

標籤:pattern   off   class   art   pat   tin   def   res   資源   

方案一、攔截器中增加針對靜態資源不進行過濾(涉及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>

  

方案二、使用預設的靜態資源處理Servlet處理靜態資源(涉及spring-mvc.xml, web.xml)

在spring-mvc.xml中啟用預設Servlet

1 <mvc:default-servlet-handler/>

  在web.xml中增加對靜態資源的處理

<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>

  * 但是當前的設定必須在Spring的Dispatcher的前面

方案三、修改Spring的全域攔截設定為*.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>

  

這樣設定,Spring就會只針對以‘.do‘結尾的請求進行處理,不再維護靜態資源

 

針對這三種方案的優劣分析:

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

  第二種方案使用預設的Servlet進行資源檔的訪問,Spring攔截所有請求,然後再將資源檔交由預設的Sevlet進行處理,效能上少有損耗;

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

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

 在SpringMVC3.0之後推薦使用: 

<mvc:resources location="/WEB-INF/html/" mapping="/**/*.html"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.ico"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.js"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.css"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.png"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.gif"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.jpg"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.ttf"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.woff"/><mvc:resources location="/WEB-INF/html/" mapping="/**/*.woff2"/>

  

在JSP中常見問題,防止SpringMVC攔截器攔截js等靜態資源檔案的解決方案

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.