定義不被SpringMVC攔截的靜態資源(html, js, css等檔案),通用方法,不需要每個目錄都設定

來源:互聯網
上載者:User

標籤:springmvc   mvc   resources   靜態資源   

springMVC的<mvc:resources mapping="***" location="***">標籤是在spring3.0.4出現的,主要是用來定義對靜態資源的訪問。

上網搜了一下跟這個配置相關的文章,大多推薦用下面這種。可是,用這種的話,如果有一個新目錄,就得新增一條配置,比較麻煩。

<!-- For static resources -->  <mvc:resources mapping="/image/**" location="/images/" />  <mvc:resources mapping="/js/**" location="/js/" />  <mvc:resources mapping="/css/**" location="/css/" />  <mvc:resources mapping="/html/**" location="/html/" />  <mvc:resources mapping="/software/**" location="/software/" />  

下面這種是直接根據靜態檔案的尾碼來配置的,比較通用,不用為每個子目錄配置一個:

<mvc:resources location="/" mapping="/**/*.html"/><mvc:resources location="/" mapping="/**/*.js"/><mvc:resources location="/" mapping="/**/*.css"/><mvc:resources location="/" mapping="/**/*.png"/><mvc:resources location="/" mapping="/**/*.gif"/>

(原創文章,轉載請註明轉自Clement-Xu的csdn部落格。)

著作權聲明:本文為原創文章,轉載請註明轉自Clement-Xu的csdn部落格。

定義不被SpringMVC攔截的靜態資源(html, js, css等檔案),通用方法,不需要每個目錄都設定

相關文章

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.